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

Last change on this file since 10367 was 5929, checked in by sandervl, 24 years ago

compile fixes for vac 3.6.5

File size: 1.1 KB
Line 
1/* $Id: ole32.h,v 1.20 2001-06-08 06:50:52 sandervl 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#define NONAMELESSUNION
18// ><DJR 17.05.99 Force to use C-interfaces for now to prevent CALLBACK definition compiler error
19#define CINTERFACE 1
20
21// ><DJR 17.05.99 Move standard includes to before os2win.h [memcmp]
22#include <stdarg.h>
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <memory.h>
27#include <wchar.h>
28
29// ><DJR 17.05.99 Prevent CALLCONV becoming _System
30#include <win/wtypes.h>
31#include <winbase.h>
32//#include <uconv.h>
33#undef CALLCONV
34
35#ifdef __cplusplus
36#include <os2win.h>
37#endif
38#include <ole2ver.h>
39#include <ole.h>
40#include <ole2.h>
41#include <winreg.h>
42
43#include "objbase.h"
44#include "docobj.h" /* for the IID_StdOleLink */
45
46#include "wine/obj_inplace.h"
47#include "wine/obj_oleobj.h"
48#include "wine/obj_surrogate.h"
49#include "wine/obj_errorinfo.h"
50#include "wine/obj_oleview.h"
51#include "wine/obj_cache.h"
52
53#include "debugtools.h"
54#include <unicode.h>
55
56#endif
Note: See TracBrowser for help on using the repository browser.