From d636a700ee5482e0c3beccca034a3f7886e0f72a Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Sun, 22 Dec 2013 19:06:31 +0000 Subject: [PATCH] [PSAPI] * This module doesn't need a PCH (one source file). CORE-7716 svn path=/trunk/; revision=61342 --- reactos/dll/win32/psapi/CMakeLists.txt | 1 - reactos/dll/win32/psapi/precomp.h | 14 -------------- reactos/dll/win32/psapi/psapi.c | 16 +++++++++++++++- 3 files changed, 15 insertions(+), 16 deletions(-) delete mode 100644 reactos/dll/win32/psapi/precomp.h diff --git a/reactos/dll/win32/psapi/CMakeLists.txt b/reactos/dll/win32/psapi/CMakeLists.txt index 96e96ea4448..43d12d45dec 100644 --- a/reactos/dll/win32/psapi/CMakeLists.txt +++ b/reactos/dll/win32/psapi/CMakeLists.txt @@ -12,5 +12,4 @@ set_module_type(psapi win32dll) target_link_libraries(psapi ${PSEH_LIB}) add_importlibs(psapi msvcrt kernel32 ntdll) -add_pch(psapi precomp.h) add_cd_file(TARGET psapi DESTINATION reactos/system32 FOR all) diff --git a/reactos/dll/win32/psapi/precomp.h b/reactos/dll/win32/psapi/precomp.h deleted file mode 100644 index ef9ee12b479..00000000000 --- a/reactos/dll/win32/psapi/precomp.h +++ /dev/null @@ -1,14 +0,0 @@ -#define WIN32_NO_STATUS -#include -#include -#include -#include -#define NTOS_MODE_USER -#include -#include -#include -#include - -#include - -#include diff --git a/reactos/dll/win32/psapi/psapi.c b/reactos/dll/win32/psapi/psapi.c index dec009924a0..bd0f0db0661 100644 --- a/reactos/dll/win32/psapi/psapi.c +++ b/reactos/dll/win32/psapi/psapi.c @@ -11,7 +11,21 @@ * 10/06/2002: Created */ -#include "precomp.h" +#include + +#define WIN32_NO_STATUS +#include +#include +#include +#define NTOS_MODE_USER +#include +#include +#include +#include + +#include + +#include #define NDEBUG #include