mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-04 18:27:36 +00:00
13 lines
274 B
C
Executable File
13 lines
274 B
C
Executable File
#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);
|
|
}
|
|
|