diff options
Diffstat (limited to 'tinyc/win32/examples/hello_dll.c')
-rwxr-xr-x | tinyc/win32/examples/hello_dll.c | 19 |
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; -} - |