#include lresult callback mainwndproc(hwnd,uint,wparam,lparam);//視窗函式的函式原型
int apientry winmain( //apientry是__stdcall的巨集定義
hinstance hinstance, //本模組的例項控制代碼
hinstance hprevinstance, //win16留下的廢物
lpstr lpcmdline, //命令列引數
int ncmdshow //主視窗初始化時的現實形式
)::showwindow(hwnd,ncmdshow);//顯示視窗
::updatewindow(hwnd);//重新整理視窗
msg msg;
while(::getmessage(&msg,null,0,0))
return msg.wparam;//當getmessage返回false時程式結束
}lresult callback mainwndproc(hwnd hwnd,uint message,wparam wparam,lparam lparam)
case wm_destroy:
}return ::defwindowproc(hwnd,message,wparam,lparam);
}
Windows API學習筆記(1)
一 視窗處理 1.建立視窗 hwnd createwindow lpctstr lpclassname,lpctstr lpwindowname,dword dwstyle,int x,int y,int nwidth,int nheight,hwnd hwndparent,hmenu hmenu,...
windows api學習筆記 簡單的記事本
include include resource.h include lresult callback mainwndproc hwnd,uint,wparam,lparam 視窗函式的函式原型 int apientry winmain apientry是 stdcall的巨集定義 hinstanc...
Windows API函式學習 5 示例
繪圖類函式 1.基本繪圖函式 1 點colorref setpixel hdc hdc,int x,int y,colorref crcolor 此函式設定由x,y指定的座標點的畫素的所用顏色,返回值標識了實際繪製該點所用顏色的rgb值。colorref getpixel hdc hdc,int x...