glib.h

来自「这是三星arm s3c44b0x开发板上的一些实例程序」· C头文件 代码 · 共 18 行

H
18
字号
#ifndef __GLIB_H__
#define __GLIB_H__


void Glib_Init(int depth);

void Glib_Line(int x1,int y1,int x2,int y2,int color);
void Glib_Rectangle(int x1,int y1,int x2,int y2,int color);
void Glib_FilledRectangle(int x1,int y1,int x2,int y2,int color);
void Glib_ClearScr(U8 c);

void _PutPixelMono(U32 x,U32 y,U8 c);
void _PutPixelG4(U32 x,U32 y,U8 c);


extern void (*PutPixel)(U32,U32,U8);

#endif //__GLIB_H__

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?