source: trunk/src/oleaut32/oleaut32.h

Last change on this file 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
RevLine 
[8450]1/* $Id: oleaut32.h,v 1.12 2002-05-17 10:16:59 sandervl Exp $ */
[631]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
[21494]16#define CINTERFACE
[631]17
[792]18#include <odin.h>
19
[631]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>
[879]31#include "oleauto.h"
[631]32#undef CALLCONV
33
34#include <ole2ver.h>
35#include <winreg.h>
36
[1729]37#include "objbase.h" // Common obj include
[631]38#include "wine/obj_inplace.h"
39#include "wine/obj_oleobj.h"
[1729]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
[631]50#include <heapstring.h>
[4837]51#include <misc.h>
[5472]52#include <unicode.h>
[631]53
[6944]54#define snprintf wsnprintfA
[631]55#endif
Note: See TracBrowser for help on using the repository browser.