source: trunk/src/ole32/ole32.h@ 5920

Last change on this file since 5920 was 5918, checked in by bird, 24 years ago

Fixed NONAMELESSUNION redefined warnings.

File size: 1.2 KB
Line 
1/* $Id: ole32.h,v 1.16 2001-06-06 17:17:21 bird Exp $ */
2/*
3 *
4 * Project Odin Software License can be found in LICENSE.TXT
5 *
6 */
7/*
8 * Win32 OLE stubs for OS/2
9 *
10 * 1998/06/12
11 *
12 * Copyright 1998 Sander van Leeuwen
13 */
14#ifndef __OLE32_H__
15#define __OLE32_H__
16
17#ifndef NONAMELESSUNION
18#define NONAMELESSUNION
19#endif
20
21// ><DJR 17.05.99 Force to use C-interfaces for now to prevent CALLBACK definition compiler error
22#define CINTERFACE 1
23
24// ><DJR 17.05.99 Move standard includes to before os2win.h [memcmp]
25#include <stdarg.h>
26#include <stdio.h>
27#include <stdlib.h>
28#include <string.h>
29#include <memory.h>
30#include <wchar.h>
31
32// ><DJR 17.05.99 Prevent CALLCONV becoming _System
33#include <win/wtypes.h>
34#include <winbase.h>
35//#include <uconv.h>
36#undef CALLCONV
37
38#ifdef __cplusplus
39#include <os2win.h>
40#endif
41#include <ole2ver.h>
42#include <ole.h>
43#include <ole2.h>
44#include <winreg.h>
45
46#include "objbase.h"
47#include "docobj.h" /* for the IID_StdOleLink */
48
49#include "wine/obj_inplace.h"
50#include "wine/obj_oleobj.h"
51#include "wine/obj_surrogate.h"
52#include "wine/obj_errorinfo.h"
53#include "wine/obj_oleview.h"
54#include "wine/obj_cache.h"
55
56#include "debugtools.h"
57#include <unicode.h>
58
59#endif
Note: See TracBrowser for help on using the repository browser.