2002-03-10 00:29:33 +01:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (C) 1998 Fran<EFBFBD>ois Gouget
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
*/
|
|
|
|
|
|
2002-12-05 23:11:43 +01:00
|
|
|
|
#include "rpc.h"
|
|
|
|
|
#include "rpcndr.h"
|
1998-12-18 17:00:03 +01:00
|
|
|
|
|
2002-12-05 23:11:43 +01:00
|
|
|
|
#ifndef _OBJBASE_H_
|
1999-06-05 17:23:20 +02:00
|
|
|
|
#define _OBJBASE_H_
|
1998-12-18 17:00:03 +01:00
|
|
|
|
|
2002-12-05 21:33:07 +01:00
|
|
|
|
#define __WINE_INCLUDE_OBJIDL
|
|
|
|
|
#include "objidl.h"
|
|
|
|
|
#undef __WINE_INCLUDE_OBJIDL
|
1999-03-10 19:03:53 +01:00
|
|
|
|
|
2000-09-23 00:17:49 +02:00
|
|
|
|
#ifndef RC_INVOKED
|
|
|
|
|
/* For compatibility only, at least for now */
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2001-04-12 23:10:54 +02:00
|
|
|
|
#ifndef INITGUID
|
2001-01-02 21:55:40 +01:00
|
|
|
|
#include "cguid.h"
|
2001-04-12 23:10:54 +02:00
|
|
|
|
#endif
|
2001-01-02 21:55:40 +01:00
|
|
|
|
|
2000-10-19 22:32:18 +02:00
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-12-06 20:49:56 +01:00
|
|
|
|
#ifndef NONAMELESSSTRUCT
|
|
|
|
|
#define LISet32(li, v) ((li).HighPart = (v) < 0 ? -1 : 0, (li).LowPart = (v))
|
|
|
|
|
#define ULISet32(li, v) ((li).HighPart = 0, (li).LowPart = (v))
|
|
|
|
|
#else
|
|
|
|
|
#define LISet32(li, v) ((li).s.HighPart = (v) < 0 ? -1 : 0, (li).s.LowPart = (v))
|
|
|
|
|
#define ULISet32(li, v) ((li).s.HighPart = 0, (li).s.LowPart = (v))
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
|
* Standard API
|
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI CoCreateGuid(GUID* pguid);
|
|
|
|
|
|
|
|
|
|
HINSTANCE WINAPI CoLoadLibrary(LPOLESTR lpszLibName, BOOL bAutoFree);
|
|
|
|
|
|
|
|
|
|
void WINAPI CoFreeAllLibraries(void);
|
|
|
|
|
|
|
|
|
|
void WINAPI CoFreeLibrary(HINSTANCE hLibrary);
|
|
|
|
|
|
|
|
|
|
void WINAPI CoFreeUnusedLibraries(void);
|
|
|
|
|
|
|
|
|
|
HRESULT WINAPI CoCreateInstance(REFCLSID rclsid, LPUNKNOWN pUnkOuter, DWORD dwClsContext, REFIID iid, LPVOID *ppv);
|
|
|
|
|
|
|
|
|
|
HRESULT WINAPI CoGetClassObject(REFCLSID rclsid, DWORD dwClsContext, COSERVERINFO *pServerInfo, REFIID iid, LPVOID *ppv);
|
|
|
|
|
|
|
|
|
|
HRESULT WINAPI CoInitialize(LPVOID lpReserved);
|
|
|
|
|
HRESULT WINAPI CoInitializeEx(LPVOID lpReserved, DWORD dwCoInit);
|
|
|
|
|
|
|
|
|
|
void WINAPI CoUninitialize(void);
|
|
|
|
|
|
|
|
|
|
typedef enum tagCOINIT
|
|
|
|
|
{
|
|
|
|
|
COINIT_APARTMENTTHREADED = 0x2, /* Apartment model */
|
|
|
|
|
COINIT_MULTITHREADED = 0x0, /* OLE calls objects on any thread */
|
|
|
|
|
COINIT_DISABLE_OLE1DDE = 0x4, /* Don't use DDE for Ole1 support */
|
|
|
|
|
COINIT_SPEED_OVER_MEMORY = 0x8 /* Trade memory for speed */
|
|
|
|
|
} COINIT;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* FIXME: not implemented */
|
|
|
|
|
BOOL WINAPI CoIsOle1Class(REFCLSID rclsid);
|
|
|
|
|
|
|
|
|
|
HRESULT WINAPI CoLockObjectExternal(LPUNKNOWN pUnk, BOOL fLock, BOOL fLastUnlockReleases);
|
|
|
|
|
|
|
|
|
|
/* class registration flags; passed to CoRegisterClassObject */
|
|
|
|
|
typedef enum tagREGCLS
|
|
|
|
|
{
|
|
|
|
|
REGCLS_SINGLEUSE = 0,
|
|
|
|
|
REGCLS_MULTIPLEUSE = 1,
|
|
|
|
|
REGCLS_MULTI_SEPARATE = 2,
|
|
|
|
|
REGCLS_SUSPENDED = 4
|
|
|
|
|
} REGCLS;
|
|
|
|
|
|
|
|
|
|
HRESULT WINAPI CoRegisterClassObject(REFCLSID rclsid,LPUNKNOWN pUnk,DWORD dwClsContext,DWORD flags,LPDWORD lpdwRegister);
|
|
|
|
|
|
|
|
|
|
HRESULT WINAPI CoRevokeClassObject(DWORD dwRegister);
|
|
|
|
|
|
|
|
|
|
HRESULT WINAPI CoGetPSClsid(REFIID riid,CLSID *pclsid);
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
|
* GUID API
|
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI StringFromCLSID16(REFCLSID id, LPOLESTR16*);
|
|
|
|
|
HRESULT WINAPI StringFromCLSID(REFCLSID id, LPOLESTR*);
|
|
|
|
|
|
|
|
|
|
HRESULT WINAPI CLSIDFromString16(LPCOLESTR16, CLSID *);
|
|
|
|
|
HRESULT WINAPI CLSIDFromString(LPCOLESTR, CLSID *);
|
|
|
|
|
|
|
|
|
|
HRESULT WINAPI CLSIDFromProgID16(LPCOLESTR16 progid, LPCLSID riid);
|
|
|
|
|
HRESULT WINAPI CLSIDFromProgID(LPCOLESTR progid, LPCLSID riid);
|
|
|
|
|
|
|
|
|
|
HRESULT WINAPI ProgIDFromCLSID(REFCLSID clsid, LPOLESTR *lplpszProgID);
|
|
|
|
|
|
|
|
|
|
INT WINAPI StringFromGUID2(REFGUID id, LPOLESTR str, INT cmax);
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
|
* COM Server dll - exports
|
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID * ppv);
|
|
|
|
|
HRESULT WINAPI DllCanUnloadNow(void);
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
|
* Moniker API
|
|
|
|
|
*/
|
2000-12-15 22:29:41 +01:00
|
|
|
|
HRESULT WINAPI GetClassFile(LPCOLESTR filePathName,CLSID *pclsid);
|
1999-03-23 14:48:56 +01:00
|
|
|
|
|
2000-10-19 22:32:18 +02:00
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-12-19 03:09:52 +01:00
|
|
|
|
#ifndef __WINE__
|
2002-06-01 01:06:46 +02:00
|
|
|
|
/* These macros are msdev's way of defining COM objects.
|
2000-12-19 03:09:52 +01:00
|
|
|
|
* They are provided here for use by Winelib developpers.
|
1999-04-22 16:56:14 +02:00
|
|
|
|
*/
|
1999-06-05 17:23:20 +02:00
|
|
|
|
#define FARSTRUCT
|
|
|
|
|
#define HUGEP
|
|
|
|
|
|
1999-03-10 19:03:53 +01:00
|
|
|
|
#define WINOLEAPI STDAPI
|
|
|
|
|
#define WINOLEAPI_(type) STDAPI_(type)
|
|
|
|
|
|
|
|
|
|
#if defined(__cplusplus) && !defined(CINTERFACE)
|
|
|
|
|
#define interface struct
|
|
|
|
|
#define STDMETHOD(method) virtual HRESULT STDMETHODCALLTYPE method
|
|
|
|
|
#define STDMETHOD_(type,method) virtual type STDMETHODCALLTYPE method
|
|
|
|
|
#define PURE = 0
|
|
|
|
|
#define THIS_
|
|
|
|
|
#define THIS void
|
|
|
|
|
#define DECLARE_INTERFACE(iface) interface iface
|
|
|
|
|
#define DECLARE_INTERFACE_(iface, baseiface) interface iface : public baseiface
|
|
|
|
|
|
1999-04-22 16:56:14 +02:00
|
|
|
|
#define BEGIN_INTERFACE
|
|
|
|
|
#define END_INTERFACE
|
1999-03-10 19:03:53 +01:00
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
|
|
#define interface struct
|
2000-06-16 23:48:24 +02:00
|
|
|
|
#define STDMETHOD(method) HRESULT STDMETHODCALLTYPE (*method)
|
|
|
|
|
#define STDMETHOD_(type,method) type STDMETHODCALLTYPE (*method)
|
1999-03-10 19:03:53 +01:00
|
|
|
|
#define PURE
|
|
|
|
|
#define THIS_ INTERFACE FAR* This,
|
|
|
|
|
#define THIS INTERFACE FAR* This
|
1999-04-22 16:56:14 +02:00
|
|
|
|
|
1999-03-10 19:03:53 +01:00
|
|
|
|
#ifdef CONST_VTABLE
|
|
|
|
|
#undef CONST_VTBL
|
|
|
|
|
#define CONST_VTBL const
|
1999-04-22 16:56:14 +02:00
|
|
|
|
#define DECLARE_INTERFACE(iface) \
|
|
|
|
|
typedef interface iface { const struct iface##Vtbl FAR* lpVtbl; } iface; \
|
|
|
|
|
typedef const struct iface##Vtbl iface##Vtbl; \
|
|
|
|
|
const struct iface##Vtbl
|
1999-03-10 19:03:53 +01:00
|
|
|
|
#else
|
|
|
|
|
#undef CONST_VTBL
|
|
|
|
|
#define CONST_VTBL
|
1999-04-22 16:56:14 +02:00
|
|
|
|
#define DECLARE_INTERFACE(iface) \
|
|
|
|
|
typedef interface iface { struct iface##Vtbl FAR* lpVtbl; } iface; \
|
|
|
|
|
typedef struct iface##Vtbl iface##Vtbl; \
|
|
|
|
|
struct iface##Vtbl
|
1999-03-10 19:03:53 +01:00
|
|
|
|
#endif
|
|
|
|
|
#define DECLARE_INTERFACE_(iface, baseiface) DECLARE_INTERFACE(iface)
|
|
|
|
|
|
1999-04-22 16:56:14 +02:00
|
|
|
|
#define BEGIN_INTERFACE
|
|
|
|
|
#define END_INTERFACE
|
1999-03-10 19:03:53 +01:00
|
|
|
|
|
2000-12-19 03:09:52 +01:00
|
|
|
|
#endif /* __cplusplus && !CINTERFACE */
|
|
|
|
|
|
|
|
|
|
#endif /* __WINE__ */
|
1998-12-18 17:00:03 +01:00
|
|
|
|
|
2002-12-05 23:11:43 +01:00
|
|
|
|
#endif /* _OBJBASE_H_ */
|