#include <windows.h>#include <stdio.h>LONG WINAPI WndProc(HWND, UINT,WPARAM,LPARAM); //回调原型int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow ){ WNDCLASS wc; HWND hwnd; MSG msg; //1.设计窗体 //wc... Read More
posted @ 2012-02-16 01:50 庚武 Views(193) Comments(0) Diggs(0) Edit
#include <windows.h>LONG WINAPI WndProc(HWND, UINT,WPARAM,LPARAM); //回调原型int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow ){ WNDCLASS wc; HWND hwnd; MSG msg; //1.设计窗体 wc.style = 0; wc.lpfnW... Read More
posted @ 2012-02-16 00:48 庚武 Views(449) Comments(0) Diggs(0) Edit