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

Last change on this file since 22012 was 21494, checked in by dmik, 15 years ago

Fixed broken build after r21492 by sorting out a huuuuge wagon of duplicates, wrong include order and other dirty mess.

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
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 <ole2.h>
40#include <winreg.h>
41
42#include "objbase.h"
43#include "docobj.h" /* for the IID_StdOleLink */
44
45#include "wine/obj_inplace.h"
46#include "wine/obj_oleobj.h"
47#include "wine/obj_surrogate.h"
48#include "wine/obj_errorinfo.h"
49#include "wine/obj_oleview.h"
50#include "wine/obj_cache.h"
51
52#include "debugtools.h"
53#include <unicode.h>
54
55#endif
Note: See TracBrowser for help on using the repository browser.