* We don't need a PCH (one source file).

svn path=/trunk/; revision=61350
This commit is contained in:
Amine Khaldi 2013-12-23 15:08:58 +00:00
parent 8d8e790f2c
commit 4bfbf60827
3 changed files with 10 additions and 13 deletions

View file

@ -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)

View file

@ -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

View file

@ -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 @@ DWORD WINAPI SfcFileException(DWORD dwUnknown0, PWCHAR pwszFile, DWORD dwUnknown
UNIMPLEMENTED;
/* Always return success */
return 0;
}
}