ReactOS 0.4.15-dev-7788-g1ad9096
compobj_private.h
Go to the documentation of this file.
1/*
2 * Copyright 1995 Martin von Loewis
3 * Copyright 1998 Justin Bradford
4 * Copyright 1999 Francis Beaudet
5 * Copyright 1999 Sylvain St-Germain
6 * Copyright 2002 Marcus Meissner
7 * Copyright 2003 Ove Kåven, TransGaming Technologies
8 * Copyright 2004 Mike Hearn, Rob Shearman, CodeWeavers Inc
9 *
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
14 *
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
19 *
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25#ifndef __WINE_OLE_COMPOBJ_H
26#define __WINE_OLE_COMPOBJ_H
27
28/* All private prototype functions used by OLE will be added to this header file */
29
30#include <stdarg.h>
31
32#include "wine/list.h"
33#include "wine/heap.h"
34
35#include "windef.h"
36#include "winbase.h"
37#include "wtypes.h"
38#include "dcom.h"
39#include "winreg.h"
40#include "winternl.h"
41
42struct apartment;
43typedef struct apartment APARTMENT;
44typedef struct LocalServer LocalServer;
45
46DEFINE_OLEGUID( CLSID_DfMarshal, 0x0000030b, 0, 0 );
47
48/* signal to stub manager that this is a rem unknown object */
49#define MSHLFLAGSP_REMUNKNOWN 0x80000000
50
51/* Thread-safety Annotation Legend:
52 *
53 * RO - The value is read only. It never changes after creation, so no
54 * locking is required.
55 * LOCK - The value is written to only using Interlocked* functions.
56 * CS - The value is read or written to inside a critical section.
57 * The identifier following "CS" is the specific critical section that
58 * must be used.
59 * MUTEX - The value is read or written to with a mutex held.
60 * The identifier following "MUTEX" is the specific mutex that
61 * must be used.
62 */
63
64typedef enum ifstub_state
65{
72
73/* an interface stub */
74struct ifstub
75{
76 struct list entry; /* entry in stub_manager->ifstubs list (CS stub_manager->lock) */
78 IID iid; /* RO */
79 IPID ipid; /* RO */
80 IUnknown *iface; /* RO */
81 MSHLFLAGS flags; /* so we can enforce process-local marshalling rules (RO) */
82 IRpcChannelBuffer*chan; /* channel passed to IRpcStubBuffer::Invoke (RO) */
83};
84
85
86/* stub managers hold refs on the object and each interface stub */
88{
89 struct list entry; /* entry in apartment stubmgr list (CS apt->cs) */
90 struct list ifstubs; /* list of active ifstubs for the object (CS lock) */
92 APARTMENT *apt; /* owning apt (RO) */
93
94 ULONG extrefs; /* number of 'external' references (CS lock) */
95 ULONG refs; /* internal reference count (CS apt->cs) */
96 ULONG weakrefs; /* number of weak references (CS lock) */
97 OID oid; /* apartment-scoped unique identifier (RO) */
98 IUnknown *object; /* the object we are managing the stub for (RO) */
99 ULONG next_ipid; /* currently unused (LOCK) */
100 OXID_INFO oxid_info; /* string binding, ipid of rem unknown and other information (RO) */
101
103
104 /* We need to keep a count of the outstanding marshals, so we can enforce the
105 * marshalling rules (ie, you can only unmarshal normal marshals once). Note
106 * that these counts do NOT include unmarshalled interfaces, once a stream is
107 * unmarshalled and a proxy set up, this count is decremented.
108 */
109
110 ULONG norm_refs; /* refcount of normal marshals (CS lock) */
111 BOOL disconnected; /* CoDisconnectObject has been called (CS lock) */
112};
113
114/* imported interface proxy */
116{
117 struct list entry; /* entry in proxy_manager list (CS parent->cs) */
118 struct proxy_manager *parent; /* owning proxy_manager (RO) */
119 LPVOID iface; /* interface pointer (RO) */
120 STDOBJREF stdobjref; /* marshal data that represents this object (RO) */
121 IID iid; /* interface ID (RO) */
122 LPRPCPROXYBUFFER proxy; /* interface proxy (RO) */
123 ULONG refs; /* imported (public) references (LOCK) */
124 IRpcChannelBuffer *chan; /* channel to object (CS parent->cs) */
125};
126
128{
129 struct list entry;
130
131 LONG refs; /* refcount of the apartment (LOCK) */
132 BOOL multi_threaded; /* multi-threaded or single-threaded apartment? (RO) */
133 DWORD tid; /* thread id (RO) */
134 OXID oxid; /* object exporter ID (RO) */
135 LONG ipidc; /* interface pointer ID counter, starts at 1 (LOCK) */
136 CRITICAL_SECTION cs; /* thread safety */
137 struct list proxies; /* imported objects (CS cs) */
138 struct list stubmgrs; /* stub managers for exported objects (CS cs) */
139 BOOL remunk_exported; /* has the IRemUnknown interface for this apartment been created yet? (CS cs) */
140 LONG remoting_started; /* has the RPC system been started for this apartment? (LOCK) */
141 struct list loaded_dlls; /* list of dlls loaded by this apartment (CS cs) */
142 DWORD host_apt_tid; /* thread ID of apartment hosting objects of differing threading model (CS cs) */
143 HWND host_apt_hwnd; /* handle to apartment window of host apartment (CS cs) */
144 LocalServer *local_server; /* A marshallable object exposing local servers (CS cs) */
145 BOOL being_destroyed; /* is currently being destroyed */
146
147 /* FIXME: OIDs should be given out by RPCSS */
148 OID oidc; /* object ID counter, starts at 1, zero is invalid OID (CS cs) */
149
150 /* STA-only fields */
151 HWND win; /* message window (LOCK) */
152 LPMESSAGEFILTER filter; /* message filter (CS cs) */
153 BOOL main; /* is this a main-threaded-apartment? (RO) */
154};
155
157{
158 struct list entry;
160 unsigned int id;
161};
162
163/* this is what is stored in TEB->ReservedForOle */
164struct oletls
165{
166 struct apartment *apt;
167 IErrorInfo *errorinfo; /* see errorinfo.c */
168 IUnknown *state; /* see CoSetState */
169 DWORD apt_mask; /* apartment mask (+0Ch on x86) */
170 void *unknown0;
171 DWORD inits; /* number of times CoInitializeEx called */
172 DWORD ole_inits; /* number of times OleInitialize called */
173 GUID causality_id; /* unique identifier for each COM call */
174 LONG pending_call_count_client; /* number of client calls pending */
175 LONG pending_call_count_server; /* number of server calls pending */
177 IObjContext *context_token; /* (+38h on x86) */
178 IUnknown *call_state; /* current call context (+3Ch on x86) */
180 IUnknown *cancel_object; /* cancel object set by CoSetCancelObject (+F8h on x86) */
181 struct list spies; /* Spies installed with CoRegisterInitializeSpy */
183};
184
185
186/* Global Interface Table Functions */
188extern void release_std_git(void) DECLSPEC_HIDDEN;
190
195
196/* Stub Manager */
197
200ULONG stub_manager_ext_release(struct stub_manager *m, ULONG refs, BOOL tableweak, BOOL last_unlock_releases) DECLSPEC_HIDDEN;
202 DWORD dest_context, void *dest_context_data, MSHLFLAGS flags) DECLSPEC_HIDDEN;
210HRESULT ipid_get_dispatch_params(const IPID *ipid, APARTMENT **stub_apt, struct stub_manager **manager, IRpcStubBuffer **stub,
211 IRpcChannelBuffer **chan, IID *iid, IUnknown **iface) DECLSPEC_HIDDEN;
213
214HRESULT marshal_object(APARTMENT *apt, STDOBJREF *stdobjref, REFIID riid, IUnknown *obj, DWORD dest_context, void *dest_context_data, MSHLFLAGS mshlflags) DECLSPEC_HIDDEN;
215
216/* RPC Backend */
217
218struct dispatch_params;
219
221HRESULT RPC_CreateClientChannel(const OXID *oxid, const IPID *ipid,
222 const OXID_INFO *oxid_info, const IID *iid,
223 DWORD dest_context, void *dest_context_data,
225HRESULT RPC_CreateServerChannel(DWORD dest_context, void *dest_context_data, IRpcChannelBuffer **chan) DECLSPEC_HIDDEN;
230void RPC_StopLocalServer(void *registration) DECLSPEC_HIDDEN;
234HRESULT RPC_ResolveOxid(OXID oxid, OXID_INFO *oxid_info) DECLSPEC_HIDDEN;
235
236/* This function initialize the Running Object Table */
238
239/* This function uninitialize the Running Object Table */
241
242/* Drag and drop */
244
245/* Apartment Functions */
246
251static inline HRESULT apartment_getoxid(const struct apartment *apt, OXID *oxid)
252{
253 *oxid = apt->oxid;
254 return S_OK;
255}
261
262/* DCOM messages used by the apartment window (not compatible with native) */
263#define DM_EXECUTERPC (WM_USER + 0) /* WPARAM = 0, LPARAM = (struct dispatch_params *) */
264#define DM_HOSTOBJECT (WM_USER + 1) /* WPARAM = 0, LPARAM = (struct host_object_params *) */
265
266/*
267 * Per-thread values are stored in the TEB on offset 0xF80
268 */
269
270/* will create if necessary */
271static inline struct oletls *COM_CurrentInfo(void)
272{
273 if (!NtCurrentTeb()->ReservedForOle)
274 {
275 struct oletls *oletls = heap_alloc_zero(sizeof(*oletls));
276 if (oletls)
278 NtCurrentTeb()->ReservedForOle = oletls;
279 }
280
281 return NtCurrentTeb()->ReservedForOle;
282}
283
284static inline APARTMENT* COM_CurrentApt(void)
285{
286 return COM_CurrentInfo()->apt;
287}
288
289static inline GUID COM_CurrentCausalityId(void)
290{
291 struct oletls *info = COM_CurrentInfo();
292 if (!info)
293 return GUID_NULL;
294 if (IsEqualGUID(&info->causality_id, &GUID_NULL))
295 CoCreateGuid(&info->causality_id);
296 return info->causality_id;
297}
298
299/* helpers for debugging */
300# define DEBUG_SET_CRITSEC_NAME(cs, name) (cs)->DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": " name)
301# define DEBUG_CLEAR_CRITSEC_NAME(cs) (cs)->DebugInfo->Spare[0] = 0
302
303#define CHARS_IN_GUID 39 /* including NULL */
304
305#define WINE_CLSCTX_DONT_HOST 0x80000000
306
307/* from dlldata.c */
308extern HINSTANCE hProxyDll DECLSPEC_HIDDEN;
312
315
319
320/* Exported non-interface Data Advise Holder functions */
323
335
338
340
341extern const char *debugstr_formatetc(const FORMATETC *formatetc) DECLSPEC_HIDDEN;
342
343static inline HRESULT copy_formatetc(FORMATETC *dst, const FORMATETC *src)
344{
345 *dst = *src;
346 if (src->ptd)
347 {
348 dst->ptd = CoTaskMemAlloc( src->ptd->tdSize );
349 if (!dst->ptd) return E_OUTOFMEMORY;
350 memcpy( dst->ptd, src->ptd, src->ptd->tdSize );
351 }
352 return S_OK;
353}
354
355extern HRESULT EnumSTATDATA_Construct(IUnknown *holder, ULONG index, DWORD array_len, STATDATA *data,
357
358#endif /* __WINE_OLE_COMPOBJ_H */
@ hook
Definition: SystemMenu.c:35
static void list_init(struct list_entry *head)
Definition: list.h:51
INT copy(TCHAR source[MAX_PATH], TCHAR dest[MAX_PATH], INT append, DWORD lpdwFlags, BOOL bTouch)
Definition: copy.c:51
Definition: list.h:37
struct ifstub * stub_manager_new_ifstub(struct stub_manager *m, IRpcStubBuffer *sb, REFIID iid, DWORD dest_context, void *dest_context_data, MSHLFLAGS flags) DECLSPEC_HIDDEN
Definition: stubmanager.c:70
HRESULT RPC_CreateServerChannel(DWORD dest_context, void *dest_context_data, IRpcChannelBuffer **chan) DECLSPEC_HIDDEN
Definition: rpc.c:1162
static APARTMENT * COM_CurrentApt(void)
LSTATUS open_classes_key(HKEY, const WCHAR *, REGSAM, HKEY *) DECLSPEC_HIDDEN
Definition: compobj.c:420
struct ifstub * stub_manager_find_ifstub(struct stub_manager *m, REFIID iid, MSHLFLAGS flags) DECLSPEC_HIDDEN
Definition: stubmanager.c:158
static HRESULT copy_formatetc(FORMATETC *dst, const FORMATETC *src)
LSTATUS create_classes_key(HKEY, const WCHAR *, REGSAM, HKEY *) DECLSPEC_HIDDEN
Definition: compobj.c:402
HRESULT MARSHAL_GetStandardMarshalCF(LPVOID *ppv) DECLSPEC_HIDDEN
Definition: marshal.c:2205
ULONG stub_manager_int_release(struct stub_manager *This) DECLSPEC_HIDDEN
Definition: stubmanager.c:311
void RPC_UnregisterAllChannelHooks(void) DECLSPEC_HIDDEN
Definition: rpc.c:445
HRESULT WINAPI GlobalOptions_CreateInstance(IClassFactory *iface, IUnknown *pUnk, REFIID riid, void **ppv) DECLSPEC_HIDDEN
Definition: compobj.c:5351
void leave_apartment(struct oletls *info) DECLSPEC_HIDDEN
Definition: compobj.c:1937
HRESULT COM_OpenKeyForCLSID(REFCLSID clsid, LPCWSTR keyname, REGSAM access, HKEY *key) DECLSPEC_HIDDEN
Definition: compobj.c:2448
HRESULT WINAPI RunningObjectTableImpl_Initialize(void) DECLSPEC_HIDDEN
Definition: moniker.c:979
DWORD apartment_release(struct apartment *apt) DECLSPEC_HIDDEN
Definition: compobj.c:1172
HINSTANCE hProxyDll DECLSPEC_HIDDEN
HRESULT COM_OpenKeyForAppIdFromCLSID(REFCLSID clsid, REGSAM access, HKEY *subkey) DECLSPEC_HIDDEN
Definition: compobj.c:2480
static struct oletls * COM_CurrentInfo(void)
HWND apartment_getwindow(const struct apartment *apt) DECLSPEC_HIDDEN
Definition: compobj.c:1733
void RPC_StartRemoting(struct apartment *apt) DECLSPEC_HIDDEN
Definition: rpc.c:1630
HRESULT RPC_RegisterChannelHook(REFGUID rguid, IChannelHook *hook) DECLSPEC_HIDDEN
Definition: rpc.c:424
ULONG stub_manager_ext_addref(struct stub_manager *m, ULONG refs, BOOL tableweak) DECLSPEC_HIDDEN
Definition: stubmanager.c:408
HRESULT start_apartment_remote_unknown(APARTMENT *apt) DECLSPEC_HIDDEN
Definition: stubmanager.c:818
HRESULT WINAPI OLE32_DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv) DECLSPEC_HIDDEN
HRESULT RPC_CreateClientChannel(const OXID *oxid, const IPID *ipid, const OXID_INFO *oxid_info, const IID *iid, DWORD dest_context, void *dest_context_data, IRpcChannelBuffer **chan, APARTMENT *apt) DECLSPEC_HIDDEN
Definition: rpc.c:1095
static GUID COM_CurrentCausalityId(void)
HRESULT RPC_GetLocalClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv) DECLSPEC_HIDDEN
Definition: rpc.c:1804
BOOL stub_manager_is_table_marshaled(struct stub_manager *m, const IPID *ipid) DECLSPEC_HIDDEN
Definition: stubmanager.c:609
HRESULT RPC_RegisterInterface(REFIID riid) DECLSPEC_HIDDEN
Definition: rpc.c:1530
struct stub_manager * get_stub_manager(APARTMENT *apt, OID oid) DECLSPEC_HIDDEN
Definition: stubmanager.c:380
void stub_manager_disconnect(struct stub_manager *m) DECLSPEC_HIDDEN
Definition: stubmanager.c:244
void DataAdviseHolder_OnDisconnect(IDataAdviseHolder *iface) DECLSPEC_HIDDEN
Definition: oleobj.c:828
HRESULT EnumSTATDATA_Construct(IUnknown *holder, ULONG index, DWORD array_len, STATDATA *data, BOOL copy, IEnumSTATDATA **ppenum) DECLSPEC_HIDDEN
Definition: oleobj.c:197
HRESULT ipid_get_dispatch_params(const IPID *ipid, APARTMENT **stub_apt, struct stub_manager **manager, IRpcStubBuffer **stub, IRpcChannelBuffer **chan, IID *iid, IUnknown **iface) DECLSPEC_HIDDEN
Definition: stubmanager.c:533
ifstub_state
@ STUBSTATE_NORMAL_MARSHALED
@ STUBSTATE_TABLE_WEAK_MARSHALED
@ STUBSTATE_NORMAL_UNMARSHALED
@ STUBSTATE_TABLE_STRONG
@ STUBSTATE_TABLE_WEAK_UNMARSHALED
IGlobalInterfaceTable * get_std_git(void) DECLSPEC_HIDDEN
Definition: git.c:362
HRESULT apartment_disconnectproxies(struct apartment *apt) DECLSPEC_HIDDEN
Definition: marshal.c:1226
void release_std_git(void) DECLSPEC_HIDDEN
Definition: git.c:386
HRESULT Handler_DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv) DECLSPEC_HIDDEN
Definition: compobj.c:5167
void OLEDD_UnInitialize(void) DECLSPEC_HIDDEN
ULONG stub_manager_ext_release(struct stub_manager *m, ULONG refs, BOOL tableweak, BOOL last_unlock_releases) DECLSPEC_HIDDEN
Definition: stubmanager.c:439
void RPC_StopLocalServer(void *registration) DECLSPEC_HIDDEN
Definition: rpc.c:2044
APARTMENT * apartment_findfromoxid(OXID oxid, BOOL ref) DECLSPEC_HIDDEN
Definition: compobj.c:1276
HRESULT RPC_ResolveOxid(OXID oxid, OXID_INFO *oxid_info) DECLSPEC_HIDDEN
Definition: rpc.c:1609
HRESULT WINAPI OLE32_DllUnregisterServer(void) DECLSPEC_HIDDEN
HRESULT apartment_createwindowifneeded(struct apartment *apt) DECLSPEC_HIDDEN
Definition: compobj.c:1704
APARTMENT * apartment_get_current_or_mta(void) DECLSPEC_HIDDEN
Definition: compobj.c:742
const char * debugstr_formatetc(const FORMATETC *formatetc) DECLSPEC_HIDDEN
Definition: datacache.c:216
void stub_manager_release_marshal_data(struct stub_manager *m, ULONG refs, const IPID *ipid, BOOL tableweak) DECLSPEC_HIDDEN
Definition: stubmanager.c:593
void RPC_UnregisterInterface(REFIID riid, BOOL wait) DECLSPEC_HIDDEN
Definition: rpc.c:1587
HRESULT FTMarshalCF_Create(REFIID riid, LPVOID *ppv) DECLSPEC_HIDDEN
Definition: ftmarshal.c:411
HRESULT StdGlobalInterfaceTable_GetFactory(LPVOID *ppv) DECLSPEC_HIDDEN
Definition: git.c:344
HRESULT HandlerCF_Create(REFCLSID rclsid, REFIID riid, LPVOID *ppv) DECLSPEC_HIDDEN
struct stub_manager * get_stub_manager_from_object(APARTMENT *apt, IUnknown *object, BOOL alloc) DECLSPEC_HIDDEN
Definition: stubmanager.c:337
BOOL actctx_get_miscstatus(const CLSID *, DWORD, DWORD *) DECLSPEC_HIDDEN
Definition: compobj.c:254
HRESULT WINAPI RunningObjectTableImpl_UnInitialize(void) DECLSPEC_HIDDEN
Definition: moniker.c:1007
HRESULT marshal_object(APARTMENT *apt, STDOBJREF *stdobjref, REFIID riid, IUnknown *obj, DWORD dest_context, void *dest_context_data, MSHLFLAGS mshlflags) DECLSPEC_HIDDEN
Definition: marshal.c:121
enum ifstub_state STUB_STATE
APARTMENT * apartment_findfromtid(DWORD tid) DECLSPEC_HIDDEN
Definition: compobj.c:1300
void RPC_ExecuteCall(struct dispatch_params *params) DECLSPEC_HIDDEN
Definition: rpc.c:1327
HRESULT RPC_StartLocalServer(REFCLSID clsid, IStream *stream, BOOL multi_use, void **registration) DECLSPEC_HIDDEN
Definition: rpc.c:1996
HRESULT WINAPI OLE32_DllRegisterServer(void) DECLSPEC_HIDDEN
HRESULT enter_apartment(struct oletls *info, DWORD model) DECLSPEC_HIDDEN
Definition: compobj.c:1913
HRESULT DataAdviseHolder_OnConnect(IDataAdviseHolder *iface, IDataObject *pDelegate) DECLSPEC_HIDDEN
Definition: oleobj.c:806
BOOL stub_manager_notify_unmarshal(struct stub_manager *m, const IPID *ipid) DECLSPEC_HIDDEN
Definition: stubmanager.c:562
static HRESULT apartment_getoxid(const struct apartment *apt, OXID *oxid)
#define E_OUTOFMEMORY
Definition: ddrawi.h:100
static LSTATUS(WINAPI *pRegDeleteTreeW)(HKEY
UINT dataobject_clipboard_format
Definition: clipboard.c:206
UINT ole_private_data_clipboard_format
Definition: clipboard.c:213
UINT embedded_object_clipboard_format
Definition: clipboard.c:207
UINT filenameW_clipboard_format
Definition: clipboard.c:205
UINT filename_clipboard_format
Definition: clipboard.c:204
UINT ownerlink_clipboard_format
Definition: clipboard.c:203
UINT object_descriptor_clipboard_format
Definition: clipboard.c:211
UINT link_source_descriptor_clipboard_format
Definition: clipboard.c:212
UINT custom_link_source_clipboard_format
Definition: clipboard.c:209
UINT embed_source_clipboard_format
Definition: clipboard.c:208
UINT link_source_clipboard_format
Definition: clipboard.c:210
HRESULT WINAPI CoCreateGuid(GUID *pguid)
Definition: compobj.c:2206
static void *static void *static LPDIRECTPLAY IUnknown * pUnk
Definition: dplayx.c:30
superblock * sb
Definition: btrfs.c:4261
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
GLint GLenum GLsizei GLsizei GLsizei GLint GLsizei const GLvoid * data
Definition: gl.h:1950
GLenum src
Definition: glext.h:6340
GLuint index
Definition: glext.h:6031
GLenum const GLfloat * params
Definition: glext.h:5645
GLenum GLenum dst
Definition: glext.h:6340
GLbitfield flags
Definition: glext.h:7161
GLuint GLint GLboolean GLint GLenum access
Definition: glext.h:7866
const GLfloat * m
Definition: glext.h:10848
LPVOID WINAPI CoTaskMemAlloc(SIZE_T size)
Definition: ifs.c:426
REFIID riid
Definition: atlbase.h:39
REFIID LPVOID * ppv
Definition: atlbase.h:39
#define S_OK
Definition: intsafe.h:52
#define NtCurrentTeb
#define GUID_NULL
Definition: ks.h:106
#define memcpy(s1, s2, n)
Definition: mkisofs.h:878
static TfClientId tid
UINT64 OID
Definition: marshal.c:88
static const GUID CLSID_DfMarshal
Definition: marshal.c:63
UINT64 OXID
Definition: marshal.c:87
REFCLSID clsid
Definition: msctf.c:82
unsigned int UINT
Definition: ndis.h:50
interface IMessageFilter * LPMESSAGEFILTER
Definition: objfwd.h:14
interface IRpcProxyBuffer * LPRPCPROXYBUFFER
Definition: objfwd.h:40
IClassFactory GlobalOptionsCF
Definition: oleproxy.c:160
long LONG
Definition: pedump.c:60
#define IsEqualGUID(rguid1, rguid2)
Definition: guiddef.h:147
#define DEFINE_OLEGUID(name, l, w1, w2)
Definition: guiddef.h:73
#define REFIID
Definition: guiddef.h:118
#define REFCLSID
Definition: guiddef.h:117
#define alloc
Definition: rosglue.h:13
Definition: scsiwmi.h:51
Definition: stubgen.c:11
struct list proxies
struct list entry
struct list loaded_dlls
LONG remoting_started
LPMESSAGEFILTER filter
BOOL being_destroyed
CRITICAL_SECTION cs
DWORD host_apt_tid
BOOL remunk_exported
struct list stubmgrs
HWND host_apt_hwnd
LocalServer * local_server
BOOL multi_threaded
IRpcChannelBuffer * chan
Definition: rpc.c:115
IRpcChannelBuffer * chan
struct proxy_manager * parent
STDOBJREF stdobjref
LPVOID iface
struct list entry
LPRPCPROXYBUFFER proxy
struct list entry
IUnknown * iface
IRpcStubBuffer * stubbuffer
MSHLFLAGS flags
IRpcChannelBuffer * chan
unsigned int id
struct list entry
IInitializeSpy * spy
Definition: copy.c:22
IErrorInfo * errorinfo
DWORD unknown
IUnknown * call_state
LONG pending_call_count_client
LONG pending_call_count_server
IUnknown * state
DWORD spies_lock
DWORD apt_mask
IObjContext * context_token
DWORD unknown2[46]
struct list spies
IUnknown * cancel_object
void * unknown0
GUID causality_id
DWORD ole_inits
DWORD inits
struct apartment * apt
Definition: send.c:48
Definition: parse.h:23
CRITICAL_SECTION lock
OXID_INFO oxid_info
IExternalConnection * extern_conn
IUnknown * object
struct list ifstubs
APARTMENT * apt
struct list entry
uint32_t ULONG
Definition: typedefs.h:59
#define WINAPI
Definition: msvc.h:6
ACCESS_MASK REGSAM
Definition: winreg.h:69
__wchar_t WCHAR
Definition: xmlstorage.h:180
const WCHAR * LPCWSTR
Definition: xmlstorage.h:185