[SLBCSP] Sync with Wine Staging 3.3. CORE-14434
[reactos.git] / dll / win32 / slbcsp / main.c
index 82d2e9a..d0e74e6 100644 (file)
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
-#define WIN32_NO_STATUS
-
-#include <config.h>
+#include "config.h"
 
 #include <stdarg.h>
 
-#include <windef.h>
-#include <winbase.h>
-#include <wine/debug.h>
+#include "windef.h"
+#include "winbase.h"
+#include "wine/debug.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(slbcsp);
 
@@ -39,10 +37,6 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
         case DLL_PROCESS_ATTACH:
             DisableThreadLibraryCalls(hinstDLL);
             break;
-        case DLL_PROCESS_DETACH:
-            break;
-        default:
-            break;
     }
     return TRUE;
 }