1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
#include <windows.h>
#include <tchar.h>
#include <crtdbg.h>
void ShowLastWinError()
{
DWORD err = GetLastError();
TCHAR *msg;
FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER, NULL, err, 0, (LPTSTR)&msg, 1024, NULL);
MessageBox(NULL, msg, _T("Windows Error"), MB_OK|MB_ICONERROR);
LocalFree((HLOCAL)msg);
}
LRESULT CALLBACK WndProc (HWND hWnd, unsigned int msg, WPARAM wParam, LPARAM lParam)
{
static HINSTANCE hInstance = ((LPCREATESTRUCT)lParam)->hInstance;
switch (msg)
{
case WM_CREATE:
{
return 0;
}
case WM_COMMAND:
{
return 0;
}
case WM_DESTROY:
{
PostQuitMessage (0);
return 0;
}
}
return (DefWindowProc (hWnd, msg, wParam, lParam));
}
int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevIns, LPSTR lpszArgument, int iShow)
{
TCHAR szClassName[] = _T("Template");
TCHAR szWindowName[] = _T("Template");
WNDCLASSEX wc = { 0 };
MSG messages;
HWND hWnd;
wc.lpszClassName = szClassName;
wc.lpfnWndProc = WndProc;
wc.cbSize = sizeof (WNDCLASSEX);
wc.hbrBackground = (HBRUSH)COLOR_BTNSHADOW;
wc.hInstance = hInstance;
if (!RegisterClassEx(&wc))
{
ShowLastWinError();
return -1;
}
hWnd = CreateWindowEx (0, szClassName, szWindowName, WS_OVERLAPPEDWINDOW,
CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
HWND_DESKTOP, 0, hInstance, 0);
if (!IsWindow(hWnd))
{
ShowLastWinError();
return -1;
}
ShowWindow (hWnd, iShow);
while (GetMessage (&messages, NULL, 0, 0))
{
TranslateMessage (&messages);
DispatchMessage (&messages);
}
return (int)messages.wParam;
}
|