diff --git a/reactos/dll/win32/pstorec/pstorec.c b/reactos/dll/win32/pstorec/pstorec.c index debb222797a..7e6acc40c13 100644 --- a/reactos/dll/win32/pstorec/pstorec.c +++ b/reactos/dll/win32/pstorec/pstorec.c @@ -43,8 +43,6 @@ BOOL WINAPI DllMain(HINSTANCE hinst, DWORD fdwReason, LPVOID fImpLoad) switch (fdwReason) { - case DLL_WINE_PREATTACH: - return FALSE; /* prefer native version */ case DLL_PROCESS_ATTACH: DisableThreadLibraryCalls(hinst); break; diff --git a/reactos/dll/win32/pstorec/pstorec_ros.diff b/reactos/dll/win32/pstorec/pstorec_ros.diff new file mode 100644 index 00000000000..aae031aee65 --- /dev/null +++ b/reactos/dll/win32/pstorec/pstorec_ros.diff @@ -0,0 +1,13 @@ +Index: pstorec.c +=================================================================== +--- pstorec.c (revision 36054) ++++ pstorec.c (working copy) +@@ -43,8 +43,6 @@ + + switch (fdwReason) + { +- case DLL_WINE_PREATTACH: +- return FALSE; /* prefer native version */ + case DLL_PROCESS_ATTACH: + DisableThreadLibraryCalls(hinst); + break;