Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers...
[reactos.git] / rostests / apitests / win32u / win32u_2k3sp2 / main.c
diff --git a/rostests/apitests/win32u/win32u_2k3sp2/main.c b/rostests/apitests/win32u/win32u_2k3sp2/main.c
deleted file mode 100644 (file)
index f1ed9aa..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-#include <windef.h>
-
-#ifdef BUILD_DLL
-    #define DLL_EXPORT __declspec(dllexport)
-#else
-    #define DLL_EXPORT
-#endif
-
-BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
-{
-    switch (fdwReason)
-    {
-        case DLL_PROCESS_ATTACH:
-            // attach to process
-            // return FALSE to fail DLL load
-            break;
-        
-        case DLL_PROCESS_DETACH:
-            // detach from process
-            break;
-        
-        case DLL_THREAD_ATTACH:
-            // attach to thread
-            break;
-        
-        case DLL_THREAD_DETACH:
-            // detach from thread
-            break;
-    }
-    return TRUE; // succesful
-}