summaryrefslogtreecommitdiffstats
path: root/winsup/mingw/samples/simpledll/dll.cpp
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2012-11-07 16:52:48 +0000
committerChristopher Faylor <me@cgf.cx>2012-11-07 16:52:48 +0000
commit61746d6ae850aa6a89b0c0b00c609011c6d0ade9 (patch)
tree95552490c8ee6f3bf8b0f2d37e61bbc9dafe7a7b /winsup/mingw/samples/simpledll/dll.cpp
parent2ca28ea2dc0c397b9a11072e121e1c5b6f87650b (diff)
downloadcygnal-61746d6ae850aa6a89b0c0b00c609011c6d0ade9.tar.gz
cygnal-61746d6ae850aa6a89b0c0b00c609011c6d0ade9.tar.bz2
cygnal-61746d6ae850aa6a89b0c0b00c609011c6d0ade9.zip
* mingw: Delete obsolete directory.
* w32api: Ditto.
Diffstat (limited to 'winsup/mingw/samples/simpledll/dll.cpp')
-rw-r--r--winsup/mingw/samples/simpledll/dll.cpp44
1 files changed, 0 insertions, 44 deletions
diff --git a/winsup/mingw/samples/simpledll/dll.cpp b/winsup/mingw/samples/simpledll/dll.cpp
deleted file mode 100644
index cdf0dfb9f..000000000
--- a/winsup/mingw/samples/simpledll/dll.cpp
+++ /dev/null
@@ -1,44 +0,0 @@
-//
-// This is a C++ version of the code in dll.c. NOTE that you need to put
-// extern "C" { ... } around DllMain or it will not be called when your
-// Dll starts up! (It will get name mangled as a C++ function and the C
-// default version in libmingw32.a will get called instead.)
-//
-
-#include <windows.h>
-
-#include <iostream>
-
-extern "C" {
-
-BOOL WINAPI
-DllMain (HANDLE hDll, DWORD dwReason, LPVOID lpReserved)
-{
- switch (dwReason)
- {
- case DLL_PROCESS_ATTACH:
- cout << "Dll Attached" << endl ;
- break;
-
- case DLL_PROCESS_DETACH:
- cout << "Dll Detached" << endl ;
- break;
-
- case DLL_THREAD_ATTACH:
- printf ("DLL Thread Attached.\n");
- break;
-
- case DLL_THREAD_DETACH:
- printf ("DLL Thread Detached.\n");
- break;
- }
- return TRUE;
-}
-
-void
-Test ()
-{
- printf ("Test Function called!\n");
-}
-
-};