网站地图
  • [c语言系统库函数] C语言write_eng_font函数-写英文字符的点阵

    原型:extern void write_eng_font(int x,int y,char *buf,int mode); 用法:#include <system.h> 功能:写英文字符的点阵 说明:把get_eng_font返回的点阵信息写到屏幕上指定位置(x,y)处。 mode=0时写8x16点阵信息,mo…
    发布日期:2014-03-24 21:16:40
  • [c语言系统库函数] C语言write_chi_font函数-写汉字点阵

    原型:extern void write_chi_font(int x,int y,char *buf); 用法:#include <system.h> 功能:写汉字点阵 说明:可以把get_chi_font所取回的点阵信息写到屏幕上指定位置。 举例: / write_chi_font.…
    发布日期:2014-03-24 21:16:40
  • [c语言系统库函数] C语言time函数-取得系统时间

    原型:extern int time(struct tm *pTime); 用法:#include <system.h> 功能:取得系统时间 说明:结构tm在system.h中定义 struct tm { int hsec; /* Half Seconds. …
    发布日期:2014-03-24 21:16:40
  • [c语言系统库函数] C语言textmode函数-设定屏幕模式

    原型:extern void textmode(int mode); 用法:#include <system.h> 功能:设定屏幕模式 说明:请参见UpdateLCD中关于mode的含义。 textmode会影响屏幕上已有内容的显示。 举例: / textmode.c …
    发布日期:2014-03-24 21:16:40
  • [c语言系统库函数] C语言sleep函数-短暂延时

    原型:extern void sleep(unsigned int sec); 用法:#include <system.h> 功能:短暂延时 说明:延时sec秒 举例: / sleep.c #include <system.h> main(…
    发布日期:2014-03-24 21:16:40
  • [c语言系统库函数] C语言rectangle函数-在屏幕上画一矩形

    原型:extern void rectangle(int left, int top, int right, int bottom, int mode); 用法:#include <system.h> 功能:在屏幕上画一矩形。 说明:(left,top)指定左上角坐标,(right,bottom)指定右下角坐标。 …
    发布日期:2014-03-24 21:16:40
  • [c语言系统库函数] C语言pyfc函数-给定一个汉字str,查询对应的拼音

    原型:extern char *pyfc(char *str); 用法:#include <system.h> 功能:给定一个汉字str,查询对应的拼音。 说明:返回一个指向对应拼音字符串。多音字的几个读音之间用空格分隔。 拼音保存在系统缓冲区中。如想保留请将其复制到程序的变量中。 举例: …
    发布日期:2014-03-24 21:16:40
  • [c语言系统库函数] C语言putpixel函数-在屏幕的指定位置上画点

    原型:extern void putpixel(int x, int y, int mode); 用法:#include <system.h> 功能:在屏幕的指定位置上画点 说明:(x,y)为屏幕上点的坐标,mode值含义如下: mode=0:清除(x,y)处的点 1:在(x,y)处画…
    发布日期:2014-03-24 21:16:40
  • [c语言系统库函数] C语言outtextxy函数-在屏幕上指定位置输出字符串

    原型:extern void TextOut(int x, int y, char *str, int mode); 用法:#include <system.h> 功能:在屏幕上指定位置输出字符串 说明:outtextxy为指向TextOut的宏,用法相同。 str所指向字符串可以为中文或英文。中文显示成16x…
    发布日期:2014-03-24 21:16:39
  • [c语言系统库函数] C语言noidle函数-调用系统例程

    原型:extern void noidle(void); 用法:#include <system.h> 功能:调用系统例程 说明:文曲星是单任务系统,为防止应用程序占用过多的系统时间而影响系统程序的执行 同时也为了防止个别程序崩溃而造成系统无法启动,文曲星内核在中断到来时会检 测应用程序所执行的…
    发布日期:2014-03-24 21:16:39
  • [c语言系统库函数] C语言move函数-将光标移动到指定位置

    原型:extern void gotoxy(int x, int y); 用法:#include <system.h> 功能:将光标移动到指定位置 说明:gotoxy(x,y)将光标移动到指定行y和列x。 gotoxy(0,0)将光标移动到屏幕左上角。 move(row,col)是到goto…
    发布日期:2014-03-24 21:16:39
  • [c语言系统库函数] C语言line函数-在屏幕上画直线

    原型:extern void line(int left, int top, int right, int bottom, int mode); 用法:#include <system.h> 功能:在屏幕上画直线 说明:(left,top)和(right,bottom)指定直线的两个端点坐标。mode决定划线的模式。 …
    发布日期:2014-03-24 21:16:39
  • [c语言系统库函数] C语言gotoxy函数-将光标移动到指定位置

    原型:extern void gotoxy(int x, int y); 用法:#include <system.h> 功能:将光标移动到指定位置 说明:gotoxy(x,y)将光标移动到指定行y和列x。 gotoxy(0,0)将光标移动到屏幕左上角。 move(row,col)是到goto…
    发布日期:2014-03-24 21:16:39
  • [c语言系统库函数] C语言getpixel函数-返回屏幕上指定点的状态

    原型:extern int getpixel(int x, int y); 用法:#include <system.h> 功能:返回屏幕上指定点的状态 说明:(x,y)为屏幕上点的坐标,如果点为清除状态返回零,否则返回非零值。 举例: / pixel.c #i…
    发布日期:2014-03-24 21:16:39
  • [c语言系统库函数] C语言getkey函数-读键

    原型:extern int getkey(void); 用法:#include <system.h> 功能:读键 说明:功能同getchar 举例: / getkey.c #include <system.h> main() …
    发布日期:2014-03-24 21:16:39
  • [c语言系统库函数] C语言get_eng_font函数-取英文字符的点阵

    原型:extern void get_eng_font(char ch, char *buf, int mode); 用法:#include <system.h> 功能:取英文字符的点阵 说明:把字符ch的点阵信息存放在buf中。 buf必须有足够的空间容纳返回的数据。 mode=0时返回8x1…
    发布日期:2014-03-24 21:16:38
  • [c语言系统库函数] C语言get_chi_font函数-取春鹤值阏

    原型:extern void get_chi_font(char *str, char *buf); 用法:#include <system.h> 功能:取春鹤值阏 说明:把str所指向的汉字的16*16点阵信息存放在buf中。 buf必须有足够的空间(>32字节)来容纳返回的数据。 只返回st…
    发布日期:2014-03-24 21:16:38
  • [c语言系统库函数] C语言delay函数-短暂延时

    原型:extern void delay(unsigned int msec); 用法:#include <system.h> 功能:短暂延时 说明:延时msec*4毫秒 举例: / delay.c #include <system.h> …
    发布日期:2014-03-24 21:16:38
  • [c语言系统库函数] C语言cursor函数-设定光标形态

    原型:extern void cursor(int mode); 用法:#include <system.h> 功能:设定光标形态 说明:mode值含义如下: 0x00:块状光标(默认) 0x80:下划线光标 其它值无意义 举例: / …
    发布日期:2014-03-24 21:16:38
  • [c语言系统库函数] C语言clrscr函数-清屏

    原型:extern void clrscr(void); extern void ClearScreen(void); 用法:#include <system.h> 功能:清屏 说明:清除屏幕缓冲区及液晶显示缓冲区 光标位置回到屏幕左上角。 举例: / clrsc…
    发布日期:2014-03-24 21:16:38