文件名称:C语言实现的光标移动控制(原创)
文件大小:922B
文件格式:RAR
更新时间:2014-03-09 10:01:12
C 光标 console
在console下,用VC实现的光标移动控制,用到win api函数。有了这个,就可以很方便的在console下写ui程序了。 其中实现有: /* 将光标移到指定位置*/ void JR_SetCursor(int x, int y); /* 将光标移到左上角 */ void JR_SetCursorStart(); /* 将光标向右移动N列 */ void JR_SetCursorRight(int n); /* 将光标向左移动N列 */ void JR_SetCursorLeft(int n); /* 将光标向上移动N行 */ void JR_SetCursorUp(int n); /* 将光标向下移动N行 */ void JR_SetCursorDown(int n); 例子请看资源:“VC写的字符界面贪吃蛇(原创)- 不闪屏” 环境:code::blocks + MinGW
【文件预览】:
JR_Cursor.h
JR_Cursor.c