mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 19:45:39 +00:00
[WINSPOOL.DRV]
* Create a main header and move some inclusions to it. CORE-7716 svn path=/trunk/; revision=61831
This commit is contained in:
parent
e44ba580be
commit
1e1bd36010
3 changed files with 23 additions and 26 deletions
|
@ -22,30 +22,13 @@
|
|||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
#define _INC_WINDOWS
|
||||
#define COM_NO_WINDOWS_H
|
||||
#include "precomp.h"
|
||||
|
||||
#include <wine/config.h>
|
||||
//#include "wine/port.h"
|
||||
|
||||
#include <stdarg.h>
|
||||
//#include <stdio.h>
|
||||
//#include <stdlib.h>
|
||||
//#include <string.h>
|
||||
//#include <ctype.h>
|
||||
//#include <stddef.h>
|
||||
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
//#include "winerror.h"
|
||||
#include <wingdi.h>
|
||||
#include <winreg.h>
|
||||
#include <shlwapi.h>
|
||||
#include <winspool.h>
|
||||
//#include "wine/unicode.h"
|
||||
#include <wine/debug.h>
|
||||
#include <winnls.h>
|
||||
#include <shlwapi.h>
|
||||
|
||||
#include <wine/debug.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(winspool);
|
||||
|
||||
|
|
17
reactos/dll/win32/winspool/precomp.h
Normal file
17
reactos/dll/win32/winspool/precomp.h
Normal file
|
@ -0,0 +1,17 @@
|
|||
#ifndef _WINSPOOL_DRV_PCH_
|
||||
#define _WINSPOOL_DRV_PCH_
|
||||
|
||||
#include <wine/config.h>
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
#define _INC_WINDOWS
|
||||
#define COM_NO_WINDOWS_H
|
||||
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <wingdi.h>
|
||||
#include <winspool.h>
|
||||
|
||||
#endif /* _WINSPOOL_DRV_PCH_ */
|
|
@ -7,12 +7,9 @@
|
|||
* REVISIONS:
|
||||
*/
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include "precomp.h"
|
||||
|
||||
#include <winuser.h>
|
||||
#include <wingdi.h>
|
||||
#include <winspool.h>
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue