Author: akhaldi
Date: Mon Dec 23 15:08:58 2013
New Revision: 61350
URL:
http://svn.reactos.org/svn/reactos?rev=61350&view=rev
Log:
[SFC_OS]
* We don't need a PCH (one source file).
Removed:
trunk/reactos/dll/win32/sfc_os/precomp.h
Modified:
trunk/reactos/dll/win32/sfc_os/CMakeLists.txt
trunk/reactos/dll/win32/sfc_os/sfc_os.c
Modified: trunk/reactos/dll/win32/sfc_os/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/sfc_os/CMakeList…
==============================================================================
--- trunk/reactos/dll/win32/sfc_os/CMakeLists.txt [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/sfc_os/CMakeLists.txt [iso-8859-1] Mon Dec 23 15:08:58 2013
@@ -11,5 +11,4 @@
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)
Removed: trunk/reactos/dll/win32/sfc_os/precomp.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/sfc_os/precomp.h…
==============================================================================
--- trunk/reactos/dll/win32/sfc_os/precomp.h [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/sfc_os/precomp.h (removed)
@@ -1,10 +0,0 @@
-#ifndef _PRECOMP_H__
-#define _PRECOMP_H__
-
-#define WIN32_NO_STATUS
-#include <stdarg.h>
-#include <windef.h>
-#include <winbase.h>
-#include <winreg.h>
-
-#endif
Modified: trunk/reactos/dll/win32/sfc_os/sfc_os.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/sfc_os/sfc_os.c?…
==============================================================================
--- trunk/reactos/dll/win32/sfc_os/sfc_os.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/sfc_os/sfc_os.c [iso-8859-1] Mon Dec 23 15:08:58 2013
@@ -18,7 +18,15 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
-#include "precomp.h"
+#include <stdarg.h>
+
+#define WIN32_NO_STATUS
+
+#include <windef.h>
+#include <winbase.h>
+#include <winreg.h>
+
+#define NDEBUG
#include <debug.h>
HINSTANCE hLibModule;
@@ -162,4 +170,4 @@
UNIMPLEMENTED;
/* Always return success */
return 0;
-}
+}