Move VMS subtree in the proper place.
[reactos.git] / vms / lib / vmsdll / dllmain.c
diff --git a/vms/lib/vmsdll/dllmain.c b/vms/lib/vmsdll/dllmain.c
new file mode 100644 (file)
index 0000000..3321dec
--- /dev/null
@@ -0,0 +1,39 @@
+/* $Id: dllmain.c,v 1.5 2002/11/24 18:42:15 robd Exp $\r
+ *\r
+ * dllmain.c\r
+ *\r
+ * A stub DllMain function which will be called by DLLs which do not\r
+ * have a user supplied DllMain.\r
+ *\r
+ * Contributors:\r
+ *  Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>\r
+ *\r
+ *  THIS SOFTWARE IS NOT COPYRIGHTED\r
+ *\r
+ *  This source code is offered for use in the public domain. You may\r
+ *  use, modify or distribute it freely.\r
+ *\r
+ *  This code is distributed in the hope that it will be useful but\r
+ *  WITHOUT ANY WARRANTY. ALL WARRENTIES, EXPRESS OR IMPLIED ARE HEREBY\r
+ *  DISCLAMED. This includes but is not limited to warrenties of\r
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\r
+ *\r
+ * $Revision: 1.5 $\r
+ * $Author: robd $\r
+ * $Date: 2002/11/24 18:42:15 $\r
+ *\r
+ */\r
+\r
+#include <windows.h>\r
+\r
+\r
+/* LIBRARY ENTRY POINT ********************************************************/\r
+\r
+BOOL\r
+WINAPI\r
+DllMain(HANDLE hDll, DWORD dwReason, LPVOID lpReserved)\r
+{\r
+       return TRUE;\r
+}\r
+\r
+/* EOF */\r