#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(197) Comments(0) Diggs(0)
#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(458) Comments(0) Diggs(0)