2000-02-17 20:38:33 +01:00
|
|
|
#ifndef _BASETYPS_H
|
|
|
|
#define _BASETYPS_H
|
* include/accctrl.h, aclapi.h, basetsd.h, basetyps.h, cderr.h,
cguid.h, commctrl.h, commdlg.h, cpl.h, cplext.h, custcntl.h,
dbt.h, dde.h, ddeml.h, dlgs.h, excpt.h, httpext.h, imagehlp.h,
imm.h, initguid.h, intshcut.h, ipexport.h, iphlpapi.h,
ipifcons.h, iprtrmib.h, iptypes.h, isguids.h, largeint.h, lm.h,
lmaccess.h, lmalert.h, lmapibuf.h, lmat.h, lmaudit.h,
lmbrowsr.h, lmchdev.h, lmconfig.h, lmcons.h, lmerr.h,
lmerrlog.h, lmmsg.h, lmremutl.h, lmrepl.h, lmserver.h,
lmshare.h, lmsname.h, lmstats.h, lmsvc.h, lmuse.h, lmuseflg.h,
lmwksta.h, lzexpand.h, mapi.h, mciavi.h, mcx.h, mmsystem.h,
mswsock.h, nb30.h, nddeapi.h, nspapi.h, ntdef.h, ntsecapi.h,
ntsecpkg.h, oaidl.h, objbase.h, objfwd.h, objidl.h, odbcinst.h,
ole.h, ole2.h, ole2ver.h, oleauto.h, olectl.h, olectlid.h,
oledlg.h, oleidl.h, pbt.h, prsht.h, psapi.h, rapi.h, ras.h,
raserror.h, rassapi.h, regstr.h, richedit.h, richole.h, rpc.h,
rpcdce.h, rpcdce2.h, rpcdcep.h, rpcndr.h, rpcnsi.h, rpcnsip.h,
rpcnterr.h, rpcproxy.h, schannel.h, schnlsp.h, scrnsave.h,
security.h, setupapi.h, shellapi.h, shlguid.h, shlobj.h, sql.h,
sqlext.h, sqltypes.h, sqlucode.h, sspi.h, subauth.h,
tlhelp32.h, unknwn.h, userenv.h, w32api.h, winbase.h, wincon.h,
wincrypt.h, windef.h, windows.h, windowsx.h, winerror.h,
wingdi.h, wininet.h, winioctl.h, winnetwk.h, winnls.h, winnt.h,
winperf.h, winreg.h, winresrc.h, winsock.h, winsock2.h,
winspool.h, winsvc.h, winuser.h, winver.h, ws2tcpip.h,
wsnetbs.h, wtypes.h, zmouse.h: Add #pragma GCC system_header
if __GNUC__ >= 3.
* include/mapi.h: Change header guard name to _MAPI_H for
consistency.
2002-03-09 10:04:10 +01:00
|
|
|
#if __GNUC__ >=3
|
|
|
|
#pragma GCC system_header
|
|
|
|
#endif
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
#ifndef __OBJC__
|
2003-07-01 15:01:41 +02:00
|
|
|
# ifdef __cplusplus
|
|
|
|
# define EXTERN_C extern "C"
|
|
|
|
# else
|
|
|
|
# define EXTERN_C extern
|
|
|
|
# endif /* __cplusplus */
|
|
|
|
# ifndef __int64
|
|
|
|
# define __int64 long long
|
|
|
|
# endif
|
|
|
|
# ifndef __int32
|
|
|
|
# define __int32 long
|
|
|
|
# endif
|
|
|
|
# ifndef __int16
|
|
|
|
# define __int16 int
|
|
|
|
# endif
|
|
|
|
# ifndef __int8
|
|
|
|
# define __int8 char
|
|
|
|
# endif
|
2003-07-02 01:37:00 +02:00
|
|
|
# ifndef __small
|
|
|
|
# define __small char
|
2003-07-01 15:01:41 +02:00
|
|
|
# endif
|
2003-07-02 01:37:00 +02:00
|
|
|
# ifndef __hyper
|
|
|
|
# define __hyper long long
|
2003-07-01 15:01:41 +02:00
|
|
|
# endif
|
|
|
|
# define STDMETHODCALLTYPE __stdcall
|
|
|
|
# define STDMETHODVCALLTYPE __cdecl
|
|
|
|
# define STDAPICALLTYPE __stdcall
|
|
|
|
# define STDAPIVCALLTYPE __cdecl
|
|
|
|
# define STDAPI EXTERN_C HRESULT STDAPICALLTYPE
|
|
|
|
# define STDAPI_(t) EXTERN_C t STDAPICALLTYPE
|
|
|
|
# define STDMETHODIMP HRESULT STDMETHODCALLTYPE
|
|
|
|
# define STDMETHODIMP_(t) t STDMETHODCALLTYPE
|
|
|
|
# define STDAPIV EXTERN_C HRESULT STDAPIVCALLTYPE
|
|
|
|
# define STDAPIV_(t) EXTERN_C t STDAPIVCALLTYPE
|
|
|
|
# define STDMETHODIMPV HRESULT STDMETHODVCALLTYPE
|
|
|
|
# define STDMETHODIMPV_(t) t STDMETHODVCALLTYPE
|
|
|
|
# define interface struct
|
|
|
|
# if defined(__cplusplus) && !defined(CINTERFACE)
|
|
|
|
# define STDMETHOD(m) virtual HRESULT STDMETHODCALLTYPE m
|
|
|
|
# define STDMETHOD_(t,m) virtual t STDMETHODCALLTYPE m
|
|
|
|
# define PURE =0
|
|
|
|
# define THIS_
|
|
|
|
# define THIS void
|
2001-11-01 20:42:57 +01:00
|
|
|
/*
|
2003-07-01 15:01:41 +02:00
|
|
|
__attribute__((com_interface)) is obsolete in __GNUC__ >= 3
|
|
|
|
g++ vtables are now COM-compatible by default
|
2001-11-01 20:42:57 +01:00
|
|
|
*/
|
2003-07-01 15:01:41 +02:00
|
|
|
# if defined(__GNUC__) && __GNUC__ < 3 && !defined(NOCOMATTRIBUTE)
|
|
|
|
# define DECLARE_INTERFACE(i) interface __attribute__((com_interface)) i
|
|
|
|
# define DECLARE_INTERFACE_(i,b) interface __attribute__((com_interface)) i : public b
|
|
|
|
# else
|
|
|
|
# define DECLARE_INTERFACE(i) interface i
|
|
|
|
# define DECLARE_INTERFACE_(i,b) interface i : public b
|
|
|
|
# endif
|
|
|
|
# else
|
|
|
|
# define STDMETHOD(m) HRESULT(STDMETHODCALLTYPE *m)
|
|
|
|
# define STDMETHOD_(t,m) t(STDMETHODCALLTYPE *m)
|
|
|
|
# define PURE
|
|
|
|
# define THIS_ INTERFACE *,
|
|
|
|
# define THIS INTERFACE *
|
|
|
|
# ifndef CONST_VTABLE
|
|
|
|
# define CONST_VTABLE
|
|
|
|
# endif
|
|
|
|
# define DECLARE_INTERFACE(i) \
|
|
|
|
typedef interface i { CONST_VTABLE struct i##Vtbl *lpVtbl; } i; \
|
|
|
|
typedef CONST_VTABLE struct i##Vtbl i##Vtbl; \
|
|
|
|
CONST_VTABLE struct i##Vtbl
|
|
|
|
# define DECLARE_INTERFACE_(i,b) DECLARE_INTERFACE(i)
|
|
|
|
# endif
|
|
|
|
# define BEGIN_INTERFACE
|
|
|
|
# define END_INTERFACE
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-07-01 15:01:41 +02:00
|
|
|
# define FWD_DECL(i) typedef interface i i
|
|
|
|
# if defined(__cplusplus) && !defined(CINTERFACE)
|
|
|
|
# define IENUM_THIS(T)
|
|
|
|
# define IENUM_THIS_(T)
|
|
|
|
# else
|
|
|
|
# define IENUM_THIS(T) T*
|
|
|
|
# define IENUM_THIS_(T) T*,
|
|
|
|
# endif
|
|
|
|
# define DECLARE_ENUMERATOR_(I,T) \
|
|
|
|
DECLARE_INTERFACE_(I,IUnknown) \
|
|
|
|
{ \
|
|
|
|
STDMETHOD(QueryInterface)(IENUM_THIS_(I) REFIID,PVOID*) PURE; \
|
|
|
|
STDMETHOD_(ULONG,AddRef)(IENUM_THIS(I)) PURE; \
|
|
|
|
STDMETHOD_(ULONG,Release)(IENUM_THIS(I)) PURE; \
|
|
|
|
STDMETHOD(Next)(IENUM_THIS_(I) ULONG,T*,ULONG*) PURE; \
|
|
|
|
STDMETHOD(Skip)(IENUM_THIS_(I) ULONG) PURE; \
|
|
|
|
STDMETHOD(Reset)(IENUM_THIS(I)) PURE; \
|
|
|
|
STDMETHOD(Clone)(IENUM_THIS_(I) I**) PURE; \
|
|
|
|
}
|
|
|
|
# define DECLARE_ENUMERATOR(T) DECLARE_ENUMERATOR_(IEnum##T,T)
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
#endif /* __OBJC__ */
|
|
|
|
|
2003-02-05 16:51:27 +01:00
|
|
|
#ifdef _GUID_DEFINED
|
|
|
|
# warning _GUID_DEFINED is deprecated, use GUID_DEFINED instead
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ! (defined _GUID_DEFINED || defined GUID_DEFINED) /* also defined in winnt.h */
|
|
|
|
#define GUID_DEFINED
|
2000-02-17 20:38:33 +01:00
|
|
|
typedef struct _GUID
|
|
|
|
{
|
|
|
|
unsigned long Data1;
|
|
|
|
unsigned short Data2;
|
|
|
|
unsigned short Data3;
|
|
|
|
unsigned char Data4[8];
|
|
|
|
} GUID,*REFGUID,*LPGUID;
|
2003-02-05 16:51:27 +01:00
|
|
|
#endif /* GUID_DEFINED */
|
2000-02-17 20:38:33 +01:00
|
|
|
#ifndef UUID_DEFINED
|
|
|
|
#define UUID_DEFINED
|
|
|
|
typedef GUID UUID;
|
|
|
|
#endif /* UUID_DEFINED */
|
|
|
|
typedef GUID IID;
|
|
|
|
typedef GUID CLSID;
|
|
|
|
typedef CLSID *LPCLSID;
|
|
|
|
typedef IID *LPIID;
|
|
|
|
typedef IID *REFIID;
|
|
|
|
typedef CLSID *REFCLSID;
|
|
|
|
typedef GUID FMTID;
|
|
|
|
typedef FMTID *REFFMTID;
|
|
|
|
typedef unsigned long error_status_t;
|
|
|
|
#define uuid_t UUID
|
|
|
|
typedef unsigned long PROPID;
|
|
|
|
|
|
|
|
#ifndef _REFGUID_DEFINED
|
2002-03-13 21:00:16 +01:00
|
|
|
#if defined (__cplusplus) && !defined (CINTERFACE)
|
2000-02-17 20:38:33 +01:00
|
|
|
#define REFGUID const GUID&
|
|
|
|
#define REFIID const IID&
|
|
|
|
#define REFCLSID const CLSID&
|
|
|
|
#else
|
|
|
|
#define REFGUID const GUID* const
|
|
|
|
#define REFIID const IID* const
|
|
|
|
#define REFCLSID const CLSID* const
|
|
|
|
#endif
|
|
|
|
#define _REFGUID_DEFINED
|
|
|
|
#define _REFGIID_DEFINED
|
|
|
|
#define _REFCLSID_DEFINED
|
|
|
|
#endif
|
|
|
|
#ifndef GUID_SECTION
|
|
|
|
#define GUID_SECTION ".text"
|
|
|
|
#endif
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#define GUID_SECT __attribute__ ((section (GUID_SECTION)))
|
|
|
|
#else
|
|
|
|
#define GUID_SECT
|
|
|
|
#endif
|
|
|
|
#if !defined(INITGUID) || (defined(INITGUID) && defined(__cplusplus))
|
|
|
|
#define GUID_EXT EXTERN_C
|
|
|
|
#else
|
|
|
|
#define GUID_EXT
|
|
|
|
#endif
|
|
|
|
#ifdef INITGUID
|
|
|
|
#define DEFINE_GUID(n,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) GUID_EXT const GUID n GUID_SECT = {l,w1,w2,{b1,b2,b3,b4,b5,b6,b7,b8}}
|
|
|
|
#define DEFINE_OLEGUID(n,l,w1,w2) DEFINE_GUID(n,l,w1,w2,0xC0,0,0,0,0,0,0,0x46)
|
|
|
|
#else
|
|
|
|
#define DEFINE_GUID(n,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) GUID_EXT const GUID n
|
|
|
|
#define DEFINE_OLEGUID(n,l,w1,w2) DEFINE_GUID(n,l,w1,w2,0xC0,0,0,0,0,0,0,0x46)
|
|
|
|
#endif
|
|
|
|
#endif
|