diff --git a/reactos/dll/win32/sfc_os/CMakeLists.txt b/reactos/dll/win32/sfc_os/CMakeLists.txt index ff68839a2c9..b9dae3f13b5 100644 --- a/reactos/dll/win32/sfc_os/CMakeLists.txt +++ b/reactos/dll/win32/sfc_os/CMakeLists.txt @@ -11,5 +11,4 @@ add_library(sfc_os SHARED ${SOURCE}) set_module_type(sfc_os win32dll) add_importlibs(sfc_os msvcrt kernel32 ntdll) -add_pch(sfc_os precomp.h) add_cd_file(TARGET sfc_os DESTINATION reactos/system32 FOR all) diff --git a/reactos/dll/win32/sfc_os/precomp.h b/reactos/dll/win32/sfc_os/precomp.h deleted file mode 100644 index b47213962cb..00000000000 --- a/reactos/dll/win32/sfc_os/precomp.h +++ /dev/null @@ -1,10 +0,0 @@ -#ifndef _PRECOMP_H__ -#define _PRECOMP_H__ - -#define WIN32_NO_STATUS -#include -#include -#include -#include - -#endif diff --git a/reactos/dll/win32/sfc_os/sfc_os.c b/reactos/dll/win32/sfc_os/sfc_os.c index c35524b0938..deb6120ae58 100644 --- a/reactos/dll/win32/sfc_os/sfc_os.c +++ b/reactos/dll/win32/sfc_os/sfc_os.c @@ -18,7 +18,15 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ -#include "precomp.h" +#include + +#define WIN32_NO_STATUS + +#include +#include +#include + +#define NDEBUG #include HINSTANCE hLibModule; @@ -162,4 +170,4 @@ DWORD WINAPI SfcFileException(DWORD dwUnknown0, PWCHAR pwszFile, DWORD dwUnknown UNIMPLEMENTED; /* Always return success */ return 0; -} \ No newline at end of file +}