mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
26 lines
412 B
C
26 lines
412 B
C
|
#ifndef _ATL_PCH_
|
||
|
#define _ATL_PCH_
|
||
|
|
||
|
#include <stdarg.h>
|
||
|
|
||
|
#define WIN32_NO_STATUS
|
||
|
#define _INC_WINDOWS
|
||
|
#define COM_NO_WINDOWS_H
|
||
|
|
||
|
#define COBJMACROS
|
||
|
|
||
|
#include <windef.h>
|
||
|
#include <winbase.h>
|
||
|
#include <winreg.h>
|
||
|
#include <objbase.h>
|
||
|
#include <oleauto.h>
|
||
|
|
||
|
#include <wine/atlbase.h>
|
||
|
#include <wine/atlwin.h>
|
||
|
#include <wine/debug.h>
|
||
|
#include <wine/unicode.h>
|
||
|
|
||
|
WINE_DEFAULT_DEBUG_CHANNEL(atl);
|
||
|
|
||
|
#endif /* _ATL_PCH_ */
|