source: trunk/src/olepro32/olepro32.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.2 KB
Line 
1/* $Id: olepro32.h,v 1.1 2000-02-21 10:33:00 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 */
11#ifndef __OLEPRO32_H__
12#define __OLEPRO32_H__
13
14// ><DJR 17.05.99 Force to use C-interfaces for now to prevent CALLBACK definition compiler error
15#define CINTERFACE
16
17#include <odin.h>
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 "oleauto.h"
31#undef CALLCONV
32
33#include <os2win.h>
34#include <ole2ver.h>
35#include <winreg.h>
36
37#include "objbase.h" // Common obj include
38#include "wine/obj_inplace.h"
39#include "wine/obj_oleobj.h"
40#include "wine/obj_surrogate.h"
41#include "wine/obj_oleview.h"
42#include "wine/obj_cache.h"
43
44#include "wine/obj_property.h" // needed for oleundo
45#include "wine/obj_olefont.h" // needed for oleundo
46#include "wine/obj_oleundo.h" // for OLE_COLOR of all things :-)
47
48#include "wine/obj_picture.h"
49
50#include <heapstring.h>
51
52#endif
Note: See TracBrowser for help on using the repository browser.