mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
[ACTIVEDS]
* Create a main header and move some inclusions to it. CORE-7716 svn path=/trunk/; revision=61735
This commit is contained in:
parent
5011f7fade
commit
2270bdbba6
3 changed files with 20 additions and 24 deletions
|
@ -21,26 +21,11 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
#define _INC_WINDOWS
|
||||
#define COM_NO_WINDOWS_H
|
||||
#include "precomp.h"
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#define COBJMACROS
|
||||
#define NONAMELESSUNION
|
||||
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
//#include "winuser.h"
|
||||
|
||||
#include <objbase.h>
|
||||
#include <iads.h>
|
||||
//#include "adshlp.h"
|
||||
|
||||
//#include "wine/unicode.h"
|
||||
#include <wine/debug.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(activeds);
|
||||
|
||||
/*****************************************************
|
||||
|
|
17
reactos/dll/win32/activeds/precomp.h
Normal file
17
reactos/dll/win32/activeds/precomp.h
Normal file
|
@ -0,0 +1,17 @@
|
|||
#ifndef _ACTIVEDS_PCH_
|
||||
#define _ACTIVEDS_PCH_
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
#define _INC_WINDOWS
|
||||
#define COM_NO_WINDOWS_H
|
||||
|
||||
#define COBJMACROS
|
||||
#define NONAMELESSUNION
|
||||
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <objbase.h>
|
||||
|
||||
#endif /* _ACTIVEDS_PCH_ */
|
|
@ -1,11 +1,5 @@
|
|||
#define WIN32_NO_STATUS
|
||||
#define _INC_WINDOWS
|
||||
#define COM_NO_WINDOWS_H
|
||||
#include <stdarg.h>
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <objbase.h>
|
||||
#include <iads.h>
|
||||
#include "precomp.h"
|
||||
|
||||
#include <stubs.h>
|
||||
|
||||
// FIXME: should go to iads.h
|
||||
|
|
Loading…
Reference in a new issue