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

Last change on this file since 2013 was 1729, checked in by davidr, 26 years ago

Added beginnings of IPicture interface for VB6 support.

File size: 1.2 KB
Line 
1/* $Id: oleaut32.h,v 1.6 1999-11-14 01:26:36 davidr 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 <os2win.h>
35#include <ole2ver.h>
36#include <ole.h>
37#include <winreg.h>
38
39#include "objbase.h" // Common obj include
40#include "wine/obj_inplace.h"
41#include "wine/obj_oleobj.h"
42#include "wine/obj_surrogate.h"
43#include "wine/obj_oleview.h"
44#include "wine/obj_cache.h"
45
46#include "wine/obj_property.h" // needed for oleundo
47#include "wine/obj_olefont.h" // needed for oleundo
48#include "wine/obj_oleundo.h" // for OLE_COLOR of all things :-)
49
50#include "wine/obj_picture.h"
51
52#include <heapstring.h>
53
54#endif
Note: See TracBrowser for help on using the repository browser.