2002-03-10 00:29:33 +01:00
/*
* Copyright 1995 Martin von Loewis
* Copyright 1998 Justin Bradford
* Copyright 1999 Francis Beaudet
* Copyright 1999 Sylvain St - Germain
* Copyright 2002 Marcus Meissner
2003-06-04 22:11:34 +02:00
* Copyright 2003 Ove K <EFBFBD> ven , TransGaming Technologies
2004-12-27 20:21:47 +01:00
* Copyright 2004 Mike Hearn , CodeWeavers Inc
2002-03-10 00:29:33 +01:00
*
* 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
*/
2000-11-25 04:08:23 +01:00
# ifndef __WINE_OLE_COMPOBJ_H
# define __WINE_OLE_COMPOBJ_H
/* All private prototype functions used by OLE will be added to this header file */
2003-09-06 01:08:26 +02:00
# include <stdarg.h>
2004-12-27 20:21:47 +01:00
# include "wine/list.h"
2003-09-06 01:08:26 +02:00
# include "windef.h"
# include "winbase.h"
2000-11-25 04:08:23 +01:00
# include "wtypes.h"
2003-06-04 22:11:34 +02:00
# include "dcom.h"
2003-09-06 01:08:26 +02:00
# include "winreg.h"
2003-08-28 21:57:35 +02:00
# include "winternl.h"
2003-06-04 22:11:34 +02:00
2004-02-10 02:36:20 +01:00
/* Windows maps COINIT values to 0x80 for apartment threaded, 0x140
* for free threaded , and 0 for uninitialized apartments . There is
* no real advantage in us doing this and certainly no release version
* of an app should be poking around with these flags . So we need a
* special value for uninitialized */
# define COINIT_UNINITIALIZED 0x100
2003-06-04 22:11:34 +02:00
/* exported interface */
typedef struct tagXIF {
struct tagXIF * next ;
LPVOID iface ; /* interface pointer */
IID iid ; /* interface ID */
IPID ipid ; /* exported interface ID */
LPRPCSTUBBUFFER stub ; /* interface stub */
DWORD refs ; /* external reference count */
HRESULT hres ; /* result of stub creation attempt */
} XIF ;
/* exported object */
typedef struct tagXOBJECT {
2004-08-13 01:00:51 +02:00
IRpcStubBufferVtbl * lpVtbl ;
2003-06-04 22:11:34 +02:00
struct tagAPARTMENT * parent ;
struct tagXOBJECT * next ;
LPUNKNOWN obj ; /* object identity (IUnknown) */
OID oid ; /* object ID */
DWORD ifc ; /* interface ID counter */
XIF * ifaces ; /* exported interfaces */
DWORD refs ; /* external reference count */
} XOBJECT ;
/* imported interface */
typedef struct tagIIF {
struct tagIIF * next ;
LPVOID iface ; /* interface pointer */
IID iid ; /* interface ID */
IPID ipid ; /* imported interface ID */
LPRPCPROXYBUFFER proxy ; /* interface proxy */
DWORD refs ; /* imported (public) references */
HRESULT hres ; /* result of proxy creation attempt */
} IIF ;
/* imported object */
typedef struct tagIOBJECT {
2004-08-13 01:00:51 +02:00
IRemUnknownVtbl * lpVtbl ;
2003-06-04 22:11:34 +02:00
struct tagAPARTMENT * parent ;
struct tagIOBJECT * next ;
LPRPCCHANNELBUFFER chan ; /* channel to object */
OXID oxid ; /* object exported ID */
OID oid ; /* object ID */
IPID ipid ; /* first imported interface ID */
IIF * ifaces ; /* imported interfaces */
DWORD refs ; /* proxy reference count */
} IOBJECT ;
/* apartment */
typedef struct tagAPARTMENT {
struct tagAPARTMENT * next , * prev , * parent ;
DWORD model ; /* threading model */
DWORD inits ; /* CoInitialize count */
DWORD tid ; /* thread id */
HANDLE thread ; /* thread handle */
OXID oxid ; /* object exporter ID */
2004-12-27 20:21:47 +01:00
OID oidc ; /* object ID counter, starts at 1, zero is invalid OID */
2003-06-04 22:11:34 +02:00
HWND win ; /* message window */
CRITICAL_SECTION cs ; /* thread safety */
LPMESSAGEFILTER filter ; /* message filter */
XOBJECT * objs ; /* exported objects */
2004-12-27 20:21:47 +01:00
IOBJECT * proxies ; /* imported objects */
2004-02-10 02:36:20 +01:00
LPUNKNOWN state ; /* state object (see Co[Get,Set]State) */
2003-06-04 22:11:34 +02:00
LPVOID ErrorInfo ; /* thread error info */
2004-12-27 17:59:28 +01:00
DWORD listenertid ; /* id of apartment_listener_thread */
2004-12-27 20:21:47 +01:00
struct list stubmgrs ; /* stub managers for exported objects */
2003-06-04 22:11:34 +02:00
} APARTMENT ;
extern APARTMENT MTA , * apts ;
2000-11-25 04:08:23 +01:00
2004-12-13 22:19:01 +01:00
extern void * StdGlobalInterfaceTable_Construct ( void ) ;
2003-03-11 02:45:38 +01:00
extern void StdGlobalInterfaceTable_Destroy ( void * self ) ;
2003-06-17 05:57:18 +02:00
extern HRESULT StdGlobalInterfaceTable_GetFactory ( LPVOID * ppv ) ;
2003-03-11 02:45:38 +01:00
2002-02-05 19:11:17 +01:00
extern HRESULT WINE_StringFromCLSID ( const CLSID * id , LPSTR idstr ) ;
extern HRESULT create_marshalled_proxy ( REFCLSID rclsid , REFIID iid , LPVOID * ppv ) ;
2003-06-17 05:57:18 +02:00
extern void * StdGlobalInterfaceTableInstance ;
2003-05-13 02:41:57 +02:00
/* Standard Marshalling definitions */
2002-02-05 19:11:17 +01:00
typedef struct _wine_marshal_id {
2004-12-27 20:21:47 +01:00
OXID oxid ; /* id of apartment */
OID oid ; /* id of stub manager */
IID iid ; /* id of interface (NOT ifptr) */
2002-02-05 19:11:17 +01:00
} wine_marshal_id ;
inline static BOOL
MARSHAL_Compare_Mids ( wine_marshal_id * mid1 , wine_marshal_id * mid2 ) {
return
2004-12-08 18:49:30 +01:00
( mid1 - > oxid = = mid2 - > oxid ) & &
( mid1 - > oid = = mid2 - > oid ) & &
2002-02-05 19:11:17 +01:00
IsEqualIID ( & ( mid1 - > iid ) , & ( mid2 - > iid ) )
;
}
2004-12-13 22:19:01 +01:00
HRESULT MARSHAL_Disconnect_Proxies ( void ) ;
2002-02-05 19:11:17 +01:00
HRESULT MARSHAL_GetStandardMarshalCF ( LPVOID * ppv ) ;
2004-12-27 20:21:47 +01:00
/* an interface stub */
struct ifstub
{
struct list entry ;
IRpcStubBuffer * stubbuffer ;
IID iid ; /* fixme: this should be an IPID not an IID */
IUnknown * iface ;
BOOL table ;
} ;
/* stub managers hold refs on the object and each interface stub */
struct stub_manager
{
struct list entry ;
struct list ifstubs ;
CRITICAL_SECTION lock ;
APARTMENT * apt ; /* owning apt */
DWORD refcount ; /* count of 'external' references */
OID oid ; /* apartment-scoped unique identifier */
IUnknown * object ; /* the object we are managing the stub for */
DWORD next_ipid ; /* currently unused */
} ;
struct stub_manager * new_stub_manager ( APARTMENT * apt , IUnknown * object ) ;
int stub_manager_ref ( struct stub_manager * m , int refs ) ;
int stub_manager_unref ( struct stub_manager * m , int refs ) ;
IRpcStubBuffer * stub_manager_iid_to_stubbuffer ( struct stub_manager * m , IID * iid ) ;
struct ifstub * stub_manager_new_ifstub ( struct stub_manager * m , IRpcStubBuffer * sb , IUnknown * iptr , IID * iid , BOOL tablemarshal ) ;
struct stub_manager * get_stub_manager ( OXID oxid , OID oid ) ;
struct stub_manager * get_stub_manager_from_object ( OXID oxid , void * object ) ;
void stub_manager_delete_ifstub ( struct stub_manager * m , IID * iid ) ; /* fixme: should be ipid */
IRpcStubBuffer * mid_to_stubbuffer ( wine_marshal_id * mid ) ;
2004-12-27 17:59:28 +01:00
void start_apartment_listener_thread ( void ) ;
2002-02-05 19:11:17 +01:00
extern HRESULT PIPE_GetNewPipeBuf ( wine_marshal_id * mid , IRpcChannelBuffer * * pipebuf ) ;
2004-12-27 20:24:55 +01:00
void RPC_StartLocalServer ( REFCLSID clsid , IStream * stream ) ;
2002-02-05 19:11:17 +01:00
2000-11-25 04:08:23 +01:00
/* This function initialize the Running Object Table */
2004-12-13 22:19:01 +01:00
HRESULT WINAPI RunningObjectTableImpl_Initialize ( void ) ;
2000-11-25 04:08:23 +01:00
/* This function uninitialize the Running Object Table */
2004-12-13 22:19:01 +01:00
HRESULT WINAPI RunningObjectTableImpl_UnInitialize ( void ) ;
2000-11-25 04:08:23 +01:00
/* This function decomposes a String path to a String Table containing all the elements ("\" or "subDirectory" or "Directory" or "FileName") of the path */
2001-07-20 20:00:00 +02:00
int WINAPI FileMonikerImpl_DecomposePath ( LPCOLESTR str , LPOLESTR * * stringTable ) ;
2000-11-25 04:08:23 +01:00
2002-08-03 02:17:10 +02:00
HRESULT WINAPI __CLSIDFromStringA ( LPCSTR idstr , CLSID * id ) ;
2003-06-04 22:11:34 +02:00
/*
* Per - thread values are stored in the TEB on offset 0xF80 ,
* see http : //www.microsoft.com/msj/1099/bugslayer/bugslayer1099.htm
*/
static inline APARTMENT * COM_CurrentInfo ( void )
{
2003-08-28 01:14:29 +02:00
APARTMENT * apt = NtCurrentTeb ( ) - > ReservedForOle ;
2003-06-04 22:11:34 +02:00
return apt ;
}
static inline APARTMENT * COM_CurrentApt ( void )
{
APARTMENT * apt = COM_CurrentInfo ( ) ;
if ( apt & & apt - > parent ) apt = apt - > parent ;
return apt ;
}
/* compobj.c */
2004-12-27 20:21:47 +01:00
APARTMENT * COM_CreateApartment ( DWORD model ) ;
2003-06-04 22:11:34 +02:00
HWND COM_GetApartmentWin ( OXID oxid ) ;
2004-12-27 20:21:47 +01:00
APARTMENT * COM_ApartmentFromOXID ( OXID oxid ) ;
2003-06-04 22:11:34 +02:00
2004-08-13 02:44:22 +02:00
# define ICOM_THIS_MULTI(impl,field,iface) impl* const This=(impl*)((char*)(iface) - offsetof(impl,field))
2000-11-25 04:08:23 +01:00
# endif /* __WINE_OLE_COMPOBJ_H */