int WINAPI WinMain( HINSTANCE hInstance, // 当前实例句柄 HINSTANCE hPrevInstance, // 前一个实例句柄 LPSTR lpCmdLine, // 指向命令行参数的指针(本程序要利用的参数) int nCmdShow // 窗口的状态 ); GetWindowLong函数:得到指定窗口信息的函数 LONG GetWindowLong( HWND hWnd, //窗/口句柄 int nIndex //指/定返回的信息 ); SetWindowLong函数:改变窗口属性 LONG SetWindowLong( HWND hWnd, //窗/口句柄 int nIndex, // 指定要设定的值的信息 LONG dwNewLong // 新值 ); SetParent函数:改变指定窗口的父窗口 HWND SetParent( HWND hWndChild, //要/改变父窗体的窗口句柄 HWND hWndNewParent //新/的父窗体的句柄 ); GetClientRect函数:得到窗口的客户区 BOOL GetClientRect( HWND hWnd, // 窗口句柄 LPRECT lpRect //RECT/结构的地址 ); SetWindowPos函数:改变窗口的大小,位置,顶级窗口等 BOOL SetWindowPos( HWND hWnd, // 窗口句柄 HWND hWndInsertAfter, // 布置窗口顺序的句柄(Z order) int X, // horizontal position int Y, // vertical position int cx, // width int cy, // height UINT uFlags // 窗口位置等标记 ); SystemParametersInfo函数:访问或设置系统级的参数 BOOL SystemParametersInfo( UINT uiAction, // 指定要获取或设置的系统参数 UINT uiParam, // depends on action to be taken PVOID pvParam, // depends on action to be taken UINT fWinIni // 用户配置文件是否改变标记 ); ShowCursor函数:显示或隐藏光标 int ShowCursor( BOOL bShow // 鼠标可见度标记 ); GetVersion函数:获取系统的版本信息 DWORD GetVersion(VOID) |