* include/windows.h (ole2.h): #include if !__OBJC__ and
__GNUC__ >=3 and !WIN32_LEAN_AND_MEAN.
This commit is contained in:
parent
6643e348be
commit
63f4c63a19
|
@ -1,3 +1,8 @@
|
|||
2002-06-08 Danny Smith <dannysmith@users.sourceforge.net>
|
||||
|
||||
* include/windows.h (ole2.h): #include if !__OBJC__ and
|
||||
__GNUC__ >=3 and !WIN32_LEAN_AND_MEAN.
|
||||
|
||||
2002-06-07 Gunnar Degnbol <gdegnbol@users.sourceforge.net>
|
||||
|
||||
* include/mapi.h: Change LPTSTR to LPSTR throughout.
|
||||
|
|
|
@ -103,6 +103,11 @@
|
|||
#include <winsock.h>
|
||||
#endif /* (_WIN32_WINNT >= 0x0400) */
|
||||
#endif
|
||||
#if !defined (__OBJC__)
|
||||
#if __GNUC__ >= 3 /* what about Watcom? */
|
||||
#include <ole2.h>
|
||||
#endif
|
||||
#endif /* __OBJC__ */
|
||||
#endif /* WIN32_LEAN_AND_MEAN */
|
||||
|
||||
#endif /* RC_INVOKED */
|
||||
|
|
Loading…
Reference in New Issue