summary refs log tree commit diff stats
path: root/tinyc/win32/examples/hello_dll.c
diff options
context:
space:
mode:
Diffstat (limited to 'tinyc/win32/examples/hello_dll.c')
-rwxr-xr-xtinyc/win32/examples/hello_dll.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/tinyc/win32/examples/hello_dll.c b/tinyc/win32/examples/hello_dll.c
deleted file mode 100755
index 7adba77ec..000000000
--- a/tinyc/win32/examples/hello_dll.c
+++ /dev/null
@@ -1,19 +0,0 @@
-//+---------------------------------------------------------------------------
-//
-//  HELLO_DLL.C - Windows DLL example - main application part
-//
-
-#include <windows.h>
-
-void HelloWorld (void);
-
-int WINAPI WinMain(
-	HINSTANCE hInstance,
-	HINSTANCE hPrevInstance,
-	LPSTR     lpCmdLine,
-	int       nCmdShow)
-{
-	HelloWorld();
-	return 0;
-}
-