* include/commcat.h: Don't include windows.h or ole2.h ifdef

COM_NO_WINDOWS_H.
	* include/unknwn.h: Ditto.
This commit is contained in:
Danny Smith 2002-12-26 04:23:57 +00:00
parent ebe02e1884
commit bdcc7be2bb
3 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2002-12-26 Danny Smith <dannysmith@users.sourceforge.net>
* include/commcat.h: Don't include windows.h or ole2.h ifdef
COM_NO_WINDOWS_H.
* include/unknwn.h: Ditto.
2002-12-26 Danny Smith <dannysmith@users.sourceforge.net> 2002-12-26 Danny Smith <dannysmith@users.sourceforge.net>
* include/imm.h (ImmGetCompositionFont[AW], * include/imm.h (ImmGetCompositionFont[AW],

View File

@ -4,8 +4,10 @@
#pragma GCC system_header #pragma GCC system_header
#endif #endif
#ifndef COM_NO_WINDOWS_H
#include <windows.h> #include <windows.h>
#include <ole2.h> #include <ole2.h>
#endif
#ifndef _RC_INVOKED #ifndef _RC_INVOKED

View File

@ -4,7 +4,11 @@
#pragma GCC system_header #pragma GCC system_header
#endif #endif
#ifndef COM_NO_WINDOWS_H
#include <windows.h> #include <windows.h>
#include <ole2.h>
#endif
#ifdef __cplusplus #ifdef __cplusplus
extern "C"{ extern "C"{
#endif #endif