2002-10-10 23:18:29 +02:00
|
|
|
|
/*
|
|
|
|
|
* COM proxy definitions
|
|
|
|
|
*
|
|
|
|
|
* Copyright 2001 Ove K<EFBFBD>ven, TransGaming Technologies
|
|
|
|
|
*
|
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-10-10 23:18:29 +02:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef __WINE_CPSF_H
|
|
|
|
|
#define __WINE_CPSF_H
|
|
|
|
|
|
|
|
|
|
HRESULT WINAPI StdProxy_Construct(REFIID riid,
|
|
|
|
|
LPUNKNOWN pUnkOuter,
|
2006-01-20 16:15:25 +01:00
|
|
|
|
const ProxyFileInfo *ProxyInfo,
|
|
|
|
|
int Index,
|
2002-10-10 23:18:29 +02:00
|
|
|
|
LPPSFACTORYBUFFER pPSFactory,
|
|
|
|
|
LPRPCPROXYBUFFER *ppProxy,
|
|
|
|
|
LPVOID *ppvObj);
|
|
|
|
|
|
|
|
|
|
HRESULT WINAPI CStdStubBuffer_Construct(REFIID riid,
|
|
|
|
|
LPUNKNOWN pUnkServer,
|
2003-05-20 06:13:44 +02:00
|
|
|
|
PCInterfaceName name,
|
2002-10-10 23:18:29 +02:00
|
|
|
|
CInterfaceStubVtbl *vtbl,
|
|
|
|
|
LPPSFACTORYBUFFER pPSFactory,
|
|
|
|
|
LPRPCSTUBBUFFER *ppStub);
|
|
|
|
|
|
2006-08-31 16:40:05 +02:00
|
|
|
|
HRESULT WINAPI CStdStubBuffer_Delegating_Construct(REFIID riid,
|
|
|
|
|
LPUNKNOWN pUnkServer,
|
|
|
|
|
PCInterfaceName name,
|
|
|
|
|
CInterfaceStubVtbl *vtbl,
|
|
|
|
|
REFIID delegating_iid,
|
|
|
|
|
LPPSFACTORYBUFFER pPSFactory,
|
|
|
|
|
LPRPCSTUBBUFFER *ppStub);
|
|
|
|
|
|
2005-11-29 10:42:04 +01:00
|
|
|
|
const MIDL_SERVER_INFO *CStdStubBuffer_GetServerInfo(IRpcStubBuffer *iface);
|
|
|
|
|
|
2006-01-30 14:56:07 +01:00
|
|
|
|
const IRpcStubBufferVtbl CStdStubBuffer_Vtbl;
|
2006-08-31 16:40:05 +02:00
|
|
|
|
const IRpcStubBufferVtbl CStdStubBuffer_Delegating_Vtbl;
|
2006-01-30 14:56:07 +01:00
|
|
|
|
|
2006-08-31 15:58:26 +02:00
|
|
|
|
void create_delegating_vtbl(DWORD num_methods);
|
|
|
|
|
|
2006-08-28 20:05:36 +02:00
|
|
|
|
HRESULT create_stub(REFIID iid, IUnknown *pUnk, IRpcStubBuffer **ppstub);
|
|
|
|
|
|
2002-10-10 23:18:29 +02:00
|
|
|
|
#endif /* __WINE_CPSF_H */
|