资源说明:把原来的繁体源码已转成简体源码
//---------------------------------------------------------------------
// Generic - 示范 Win32 程式的基础写法
// Top Studio * J.J.Hou
// 档名 : generic.c
// 作者 : 侯俊杰
// 编译联结 : 请参考 generic.mak
//---------------------------------------------------------------------
#include // 每一个 Windows 程式都需要含入此档
#include "resource.h" // 内含各个 resource IDs
#include "generic.h" // 本程式之含入档
HINSTANCE _hInst; // Instance handle
HWND _hWnd;
char _szAppName[] = "Generic"; // 程式名称
char _szTitle[] = "Generic Sample Application"; // 视窗标题
//---------------------------------------------------------------------
// WinMain - 程式进入点
//---------------------------------------------------------------------
int CALLBACK WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpCmdLine, int nCmdShow)
{
MSG msg;
UNREFERENCED_PARAMETER(lpCmdLine); // 避免编译时的警告
if (!hPrevInstance)
if (!InitApplication(hInstance))
return (FALSE);
if (!InitInstance(hInstance, nCmdShow))
return (FALSE);
while (GetMessage(&msg, NULL, 0, 0)) {
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return (msg.wParam); // 传回 PostQuitMessage 的参数
}
本源码包内暂不包含可直接显示的源代码文件,请下载源码包。