mirror of
https://github.com/troydhanson/tpl.git
synced 2024-12-26 07:31:09 +08:00
13 lines
274 B
C
13 lines
274 B
C
#include <windows.h>
|
|
#include "tpl.h"
|
|
|
|
int WINAPI WinMain (HINSTANCE hInstance,
|
|
HINSTANCE hPrevInstance,
|
|
PSTR szCmdLine,
|
|
int iCmdShow)
|
|
{
|
|
MessageBox (NULL, "Hello", "Hello Demo", MB_OK);
|
|
return (0);
|
|
}
|
|
|