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

Last change on this file since 10367 was 8450, checked in by sandervl, 23 years ago

Wine resync

File size: 1.3 KB
Line 
1/* $Id: oleaut32.h,v 1.12 2002-05-17 10:16:59 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#include <odin.h>
19
20// ><DJR 17.05.99 Move standard includes to before os2win.h [memcmp]
21#include <stdarg.h>
22#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
25#include <memory.h>
26#include <wchar.h>
27
28// ><DJR 17.05.99 Prevent CALLCONV becoming _System
29#include <win/wtypes.h>
30#include <winbase.h>
31#include "oleauto.h"
32#undef CALLCONV
33
34#include <ole2ver.h>
35#include <ole.h>
36#include <winreg.h>
37
38#include "objbase.h" // Common obj include
39#include "wine/obj_inplace.h"
40#include "wine/obj_oleobj.h"
41#include "wine/obj_surrogate.h"
42#include "wine/obj_oleview.h"
43#include "wine/obj_cache.h"
44
45#include "wine/obj_property.h" // needed for oleundo
46#include "wine/obj_olefont.h" // needed for oleundo
47#include "wine/obj_oleundo.h" // for OLE_COLOR of all things :-)
48
49#include "wine/obj_picture.h"
50
51#include <heapstring.h>
52#include <misc.h>
53#include <unicode.h>
54
55#define snprintf wsnprintfA
56#endif
Note: See TracBrowser for help on using the repository browser.