Author: akhaldi
Date: Mon Jan 20 13:12:05 2014
New Revision: 61733
URL:
http://svn.reactos.org/svn/reactos?rev=61733&view=rev
Log:
[SLAYER]
* We don't need PCH for one source file modules.
CORE-7716
Removed:
trunk/reactos/dll/shellext/slayer/precomp.h
Modified:
trunk/reactos/dll/shellext/slayer/CMakeLists.txt
trunk/reactos/dll/shellext/slayer/slayer.c
Modified: trunk/reactos/dll/shellext/slayer/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/slayer/CMakeL…
==============================================================================
--- trunk/reactos/dll/shellext/slayer/CMakeLists.txt [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/slayer/CMakeLists.txt [iso-8859-1] Mon Jan 20 13:12:05
2014
@@ -20,5 +20,4 @@
kernel32
ntdll)
-add_pch(slayer precomp.h)
add_cd_file(TARGET slayer DESTINATION reactos/system32 FOR all)
Removed: trunk/reactos/dll/shellext/slayer/precomp.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/slayer/precom…
==============================================================================
--- trunk/reactos/dll/shellext/slayer/precomp.h [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/slayer/precomp.h (removed)
@@ -1,16 +0,0 @@
-#define WIN32_NO_STATUS
-#define _INC_WINDOWS
-#define COM_NO_WINDOWS_H
-#include <stdarg.h>
-#include <windef.h>
-#include <winbase.h>
-#include <winreg.h>
-#include <wincon.h>
-#include <shellapi.h>
-#include <shlobj.h>
-#include <tchar.h>
-
-#include "resource.h"
-#include "slayer.h"
-
-/* EOF */
Modified: trunk/reactos/dll/shellext/slayer/slayer.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/slayer/slayer…
==============================================================================
--- trunk/reactos/dll/shellext/slayer/slayer.c [iso-8859-1] (original)
+++ trunk/reactos/dll/shellext/slayer/slayer.c [iso-8859-1] Mon Jan 20 13:12:05 2014
@@ -24,7 +24,22 @@
* UPDATE HISTORY:
* 09/25/2004 Created
*/
-#include "precomp.h"
+
+#include <stdarg.h>
+
+#define WIN32_NO_STATUS
+#define _INC_WINDOWS
+#define COM_NO_WINDOWS_H
+
+#include <windef.h>
+#include <winbase.h>
+#include <winreg.h>
+#include <shellapi.h>
+#include <shlobj.h>
+#include <tchar.h>
+
+#include "resource.h"
+#include "slayer.h"
HINSTANCE hInstance = NULL;
static LONG dllrefs = 0;