建立視窗的例子程式

2021-05-24 06:23:36 字數 1282 閱讀 3699

#include

#pragma comment(lib,"winmm")

// wparamword paramlparamlong param

lresult

callback

wndproc (hwnd, uint, wparam, lparam) ;

intwinapi

winmain

(hinstance

hinstance,

hinstance

hprevinstance,

pstr

szcmdline,

inticmdshow)

//建立視窗

hwnd =

createwindow

// window class name

text ("the hello program"),

// window caption

// window style

cw_usedefault,// initial x position

cw_usedefault,// initial y position

cw_usedefault,// initial x size

cw_usedefault,// initial y size

null,

// parent window handle

null,

// window menu handle

hinstance,

// program instance handle

null) ;

// creation parameters

//顯示視窗

showwindow

(hwnd, icmdshow) ; //

更新視窗

updatewindow

(hwnd) ;

while (

getmessage

(&msg, null, 0, 0))

return msg.wparam ; }

//視窗過程函式

lresult

callback

wndproc

(hwnd

hwnd,

uint

message,

wparam

wparam,

lparam

lparam)

return defwindowproc (hwnd, message, wparam, lparam); }

wordcount例子程式

hadoop 0.20.1裡的wordcount源 與0.19.2已經有較大的區別了。在新版本的hadoop中,org.apache.hadoop.mapred包被org.apache.hadoop.mapreduce所取代。不過為了保持相容性,org.apache.hadoop.mapred還是存...

VBScript例子程式

w3cschool 工作中遇到的問題,專案組長給了乙個excel,讓分析其中包含的字元含義,由於每頁條數太多,導致看不出來要分析的字元在一長串字元中的位置。於是想把其中要注意的字元標註顏色,網上找資料,發現excel中本身沒有這個功能,於是下了下面的 進行處理,順便學習下vbs的基本語法格式。未執行...

Freemarker 最簡單的例子程式

freemarker 最簡單的例子程式 freemarker 2.3.18.tar.gz freemarker 2.3.13.jar 鏈結 密碼 izs5 1 通過string來建立模版物件,並執行插值處理 執行後,控制台輸出結果 import freemarker.template.templat...