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

Last change on this file since 478 was 290, checked in by davidr, 26 years ago

Added Unicode variant of string management class.
Added RunningObjectTable definitions.

File size: 1.0 KB
Line 
1/*
2 *
3 * Project Odin Software License can be found in LICENSE.TXT
4 *
5 */
6/*
7 * Win32 OLE stubs for OS/2
8 *
9 * 1998/06/12
10 *
11 * Copyright 1998 Sander van Leeuwen
12 */
13#ifndef __OLE32_H__
14#define __OLE32_H__
15
16// ><DJR 17.05.99 Force to use C-interfaces for now to prevent CALLBACK definition compiler error
17#define CINTERFACE 1
18
19// ><DJR 17.05.99 Move standard includes to before os2win.h [memcmp]
20#include <stdarg.h>
21#include <stdio.h>
22#include <stdlib.h>
23#include <string.h>
24#include <memory.h>
25#include <wchar.h>
26
27// ><DJR 17.05.99 Prevent CALLCONV becoming _System
28#include <win/wtypes.h>
29#include <winbase.h>
30#include <uconv.h>
31#undef CALLCONV
32
33#include <os2win.h>
34#include <ole2ver.h>
35#include <ole.h>
36#include <winreg.h>
37
38#include "wine/obj_base.h"
39#include "wine/obj_misc.h"
40#include "wine/obj_inplace.h"
41#include "wine/obj_dataobject.h"
42#include "wine/obj_oleobj.h"
43#include "wine/obj_marshal.h"
44#include "wine/obj_moniker.h"
45#include "wine/obj_clientserver.h"
46#include "wine/obj_dragdrop.h"
47#include "wine/obj_surrogate.h"
48
49#endif
Note: See TracBrowser for help on using the repository browser.