source: trunk/src/oleaut32/oleaut32.h@ 689

Last change on this file since 689 was 632, checked in by sandervl, 26 years ago

Created (WINE Port of OLEAUT32)

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