From 4821702fb49c72216c307341dc3dfd5a3984cf83 Mon Sep 17 00:00:00 2001 From: bellard Date: Thu, 14 Apr 2005 23:49:21 +0000 Subject: win32 merge --- win32/examples/hello_dll.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 win32/examples/hello_dll.c (limited to 'win32/examples/hello_dll.c') diff --git a/win32/examples/hello_dll.c b/win32/examples/hello_dll.c new file mode 100644 index 0000000..d739758 --- /dev/null +++ b/win32/examples/hello_dll.c @@ -0,0 +1,19 @@ +//+--------------------------------------------------------------------------- +// +// HELLO_DLL.C - Windows DLL example - main application part +// + +#include + +void HelloWorld (void); + +int WINAPI WinMain( + HINSTANCE hInstance, + HINSTANCE hPrevInstance, + LPSTR lpCmdLine, + int nCmdShow) +{ + HelloWorld(); + return 0; +} + -- cgit v1.3.1