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
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>
# 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 */
OID oidc ; /* object ID counter */
HWND win ; /* message window */
CRITICAL_SECTION cs ; /* thread safety */
LPMESSAGEFILTER filter ; /* message filter */
XOBJECT * objs ; /* exported objects */
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 */
} APARTMENT ;
extern APARTMENT MTA , * apts ;
2000-11-25 04:08:23 +01:00
2003-03-11 02:45:38 +01:00
extern void * StdGlobalInterfaceTable_Construct ( ) ;
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 ;
2002-02-05 19:11:17 +01:00
# define PIPEPREF "\\\\.\\pipe\\"
# define OLESTUBMGR PIPEPREF"WINE_OLE_StubMgr"
2004-07-23 01:44:54 +02:00
2003-05-13 02:41:57 +02:00
/* Standard Marshalling definitions */
2002-02-05 19:11:17 +01:00
typedef struct _wine_marshal_id {
DWORD processid ;
DWORD objectid ; /* unique value corresp. IUnknown of object */
IID iid ;
} wine_marshal_id ;
inline static BOOL
MARSHAL_Compare_Mids ( wine_marshal_id * mid1 , wine_marshal_id * mid2 ) {
return
( mid1 - > processid = = mid2 - > processid ) & &
( mid1 - > objectid = = mid2 - > objectid ) & &
IsEqualIID ( & ( mid1 - > iid ) , & ( mid2 - > iid ) )
;
}
/* compare without interface compare */
inline static BOOL
MARSHAL_Compare_Mids_NoInterface ( wine_marshal_id * mid1 , wine_marshal_id * mid2 ) {
return
( mid1 - > processid = = mid2 - > processid ) & &
( mid1 - > objectid = = mid2 - > objectid )
;
}
HRESULT MARSHAL_Find_Stub_Buffer ( wine_marshal_id * mid , IRpcStubBuffer * * stub ) ;
2004-07-30 01:58:12 +02:00
void MARSHAL_Invalidate_Stub_From_MID ( wine_marshal_id * mid ) ;
2004-08-02 20:28:29 +02:00
HRESULT MARSHAL_Disconnect_Proxies ( ) ;
2002-02-05 19:11:17 +01:00
HRESULT MARSHAL_GetStandardMarshalCF ( LPVOID * ppv ) ;
2004-12-07 18:01:40 +01:00
void start_listener_thread ( ) ;
2002-02-05 19:11:17 +01:00
extern HRESULT PIPE_GetNewPipeBuf ( wine_marshal_id * mid , IRpcChannelBuffer * * pipebuf ) ;
2000-11-25 04:08:23 +01:00
/* This function initialize the Running Object Table */
HRESULT WINAPI RunningObjectTableImpl_Initialize ( ) ;
/* This function uninitialize the Running Object Table */
HRESULT WINAPI RunningObjectTableImpl_UnInitialize ( ) ;
/* 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-02-10 02:36:20 +01:00
APARTMENT * COM_CreateApartment ( DWORD model ) ;
2003-06-04 22:11:34 +02:00
HWND COM_GetApartmentWin ( OXID oxid ) ;
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 */