summaryrefslogtreecommitdiff
path: root/Bus/Ivy/IvyDllMain.cpp
diff options
context:
space:
mode:
authorfcolin2007-02-01 13:01:53 +0000
committerfcolin2007-02-01 13:01:53 +0000
commit696f9321abbee611fa6a6d54da488a6eb7666b5a (patch)
tree06be6238912422ae29e64c52e5c8fb4080a9b481 /Bus/Ivy/IvyDllMain.cpp
parent2c9d8fbc370991cabe93baf21e0b0941f18d1040 (diff)
downloadivy-cplusplus-696f9321abbee611fa6a6d54da488a6eb7666b5a.zip
ivy-cplusplus-696f9321abbee611fa6a6d54da488a6eb7666b5a.tar.gz
ivy-cplusplus-696f9321abbee611fa6a6d54da488a6eb7666b5a.tar.bz2
ivy-cplusplus-696f9321abbee611fa6a6d54da488a6eb7666b5a.tar.xz
Utilisateur : Fcolin Date : 16/06/00 Heure : 10:14 Créé (vss 1)
Diffstat (limited to 'Bus/Ivy/IvyDllMain.cpp')
-rw-r--r--Bus/Ivy/IvyDllMain.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/Bus/Ivy/IvyDllMain.cpp b/Bus/Ivy/IvyDllMain.cpp
new file mode 100644
index 0000000..ac1a854
--- /dev/null
+++ b/Bus/Ivy/IvyDllMain.cpp
@@ -0,0 +1,29 @@
+// libIvy.cpp : Defines the initialization routines for the DLL.
+//
+
+#include "stdafx.h"
+
+
+extern "C" int APIENTRY
+DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
+{
+ // Remove this if you use lpReserved
+ UNREFERENCED_PARAMETER(lpReserved);
+
+ if (dwReason == DLL_PROCESS_ATTACH)
+ {
+ TRACE("LIBIVY.DLL Initializing!\n");
+
+ // Extension DLL one-time initialization
+ //if (WSAInit)
+ // return 0;
+
+
+ }
+ else if (dwReason == DLL_PROCESS_DETACH)
+ {
+ TRACE("LIBIVY.DLL Terminating!\n");
+ // Terminate the library before destructors are called
+ }
+ return 1; // ok
+}