Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers...
[reactos.git] / reactos / dll / win32 / framedyn / main.c
diff --git a/reactos/dll/win32/framedyn/main.c b/reactos/dll/win32/framedyn/main.c
deleted file mode 100644 (file)
index a815809..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * COPYRIGHT:       See COPYING in the top level directory
- * PROJECT:         ReactOS system libraries
- * FILE:            dll/win32/framedyn/main.c
- * PURPOSE:         framedyn entry point
- * PROGRAMMERS:     Pierre Schweitzer (pierre@reactos.org)
- *
- */
-
-/* INCLUDES ******************************************************************/
-
-#include <stdarg.h>
-#include <windef.h>
-#include <winbase.h>
-
-BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
-{
-
-    switch (fdwReason)
-    {
-        case DLL_PROCESS_ATTACH:
-            DisableThreadLibraryCalls(hinstDLL);
-            break;
-        case DLL_PROCESS_DETACH:
-            break;
-    }
-
-    return TRUE;
-}