source: trunk/src/ole32/ole32.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.1 KB
RevLine 
[5929]1/* $Id: ole32.h,v 1.20 2001-06-08 06:50:52 sandervl Exp $ */
[4]2/*
3 *
4 * Project Odin Software License can be found in LICENSE.TXT
5 *
6 */
7/*
8 * Win32 OLE stubs for OS/2
9 *
10 * 1998/06/12
11 *
12 * Copyright 1998 Sander van Leeuwen
13 */
14#ifndef __OLE32_H__
15#define __OLE32_H__
16
[5926]17#define NONAMELESSUNION
[202]18// ><DJR 17.05.99 Force to use C-interfaces for now to prevent CALLBACK definition compiler error
[21494]19#define CINTERFACE
[4]20
[202]21// ><DJR 17.05.99 Move standard includes to before os2win.h [memcmp]
22#include <stdarg.h>
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <memory.h>
[290]27#include <wchar.h>
[202]28
29// ><DJR 17.05.99 Prevent CALLCONV becoming _System
[290]30#include <win/wtypes.h>
[202]31#include <winbase.h>
[633]32//#include <uconv.h>
[202]33#undef CALLCONV
34
[5026]35#ifdef __cplusplus
[202]36#include <os2win.h>
[5026]37#endif
[202]38#include <ole2ver.h>
[851]39#include <ole2.h>
[202]40#include <winreg.h>
41
[1033]42#include "objbase.h"
[3167]43#include "docobj.h" /* for the IID_StdOleLink */
[1033]44
[202]45#include "wine/obj_inplace.h"
46#include "wine/obj_oleobj.h"
47#include "wine/obj_surrogate.h"
[4659]48#include "wine/obj_errorinfo.h"
[1033]49#include "wine/obj_oleview.h"
50#include "wine/obj_cache.h"
[202]51
[4274]52#include "debugtools.h"
[5472]53#include <unicode.h>
[4274]54
[97]55#endif
Note: See TracBrowser for help on using the repository browser.