以下是引用TonyDeng在2012-2-5 11:34:58的发言:
Windows API有,什麼都不用下載,是系統自帶的DLL。
也就是说可以在Win32 Console Application下调用 Windows API而不必在Win32 Application 下写程序?
Windows API有,什麼都不用下載,是系統自帶的DLL。
梅尚程荀
马谭杨奚
#include <stdio.h> #include <windows.h> int main() { int iRet; MessageBox(NULL, "Hello World!\n", "拥抱世界", MB_YESNOCANCEL); iRet = MessageBox(NULL, "Hello World!\n", "拥抱世界", MB_ICONASTERISK); return 0; }
#include <stdio.h> #include <windows.h> #include <winuser.h> int main() { int a[10], b[10]; CreateCursor(HINSTANCE hInst, 10, 20, 4, 5, a, b); Sleep(2000); MessageBox(NULL, "Hello World!\n", "拥抱世界", MB_YESNOCANCEL); MessageBox(NULL, "Hello World!\n", "拥抱世界", MB_ICONASTERISK); return 0; }老大,CreateCursor的第一个参数应该怎么处理?比如我想在控制台窗口大约中间的位置创建一个指定了大小、位模式、热点的光标,貌似我上面的CreateCursor不起作用?把HINSTANCE hInst 改成 NULL 没反应改成数字又出错?