/usr/include/wine/windows/ctxtcall.h is in wine1.6-dev 1:1.6.2-0ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | /*** Autogenerated by WIDL 1.6.2 from ctxtcall.idl - Do not edit ***/
#ifndef __REQUIRED_RPCNDR_H_VERSION__
#define __REQUIRED_RPCNDR_H_VERSION__ 475
#endif
#include <rpc.h>
#include <rpcndr.h>
#ifndef COM_NO_WINDOWS_H
#include <windows.h>
#include <ole2.h>
#endif
#ifndef __ctxtcall_h__
#define __ctxtcall_h__
/* Forward declarations */
#ifndef __IContextCallback_FWD_DEFINED__
#define __IContextCallback_FWD_DEFINED__
typedef interface IContextCallback IContextCallback;
#endif
/* Headers for imported files */
#include <wtypes.h>
#include <objidl.h>
#include <unknwn.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct tagComCallData {
DWORD dwDispid;
DWORD dwReserved;
void *pUserDefined;
} ComCallData;
/*****************************************************************************
* IContextCallback interface
*/
#ifndef __IContextCallback_INTERFACE_DEFINED__
#define __IContextCallback_INTERFACE_DEFINED__
typedef HRESULT (__stdcall *PFNCONTEXTCALL)(ComCallData *pParam);
DEFINE_GUID(IID_IContextCallback, 0x000001da, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46);
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("000001da-0000-0000-c000-000000000046")
IContextCallback : public IUnknown
{
virtual HRESULT STDMETHODCALLTYPE ContextCallback(
HRESULT (__stdcall * pCallback)(ComCallData *pParam),
ComCallData *pParam,
REFIID riid,
int iMethod,
IUnknown *pUnk) = 0;
};
#ifdef __CRT_UUID_DECL
__CRT_UUID_DECL(IContextCallback, 0x000001da, 0x0000, 0x0000, 0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46)
#endif
#else
typedef struct IContextCallbackVtbl {
BEGIN_INTERFACE
/*** IUnknown methods ***/
HRESULT (STDMETHODCALLTYPE *QueryInterface)(
IContextCallback* This,
REFIID riid,
void **ppvObject);
ULONG (STDMETHODCALLTYPE *AddRef)(
IContextCallback* This);
ULONG (STDMETHODCALLTYPE *Release)(
IContextCallback* This);
/*** IContextCallback methods ***/
HRESULT (STDMETHODCALLTYPE *ContextCallback)(
IContextCallback* This,
HRESULT (__stdcall * pCallback)(ComCallData *pParam),
ComCallData *pParam,
REFIID riid,
int iMethod,
IUnknown *pUnk);
END_INTERFACE
} IContextCallbackVtbl;
interface IContextCallback {
CONST_VTBL IContextCallbackVtbl* lpVtbl;
};
#ifdef COBJMACROS
#ifndef WIDL_C_INLINE_WRAPPERS
/*** IUnknown methods ***/
#define IContextCallback_QueryInterface(This,riid,ppvObject) (This)->lpVtbl->QueryInterface(This,riid,ppvObject)
#define IContextCallback_AddRef(This) (This)->lpVtbl->AddRef(This)
#define IContextCallback_Release(This) (This)->lpVtbl->Release(This)
/*** IContextCallback methods ***/
#define IContextCallback_ContextCallback(This,pCallback,pParam,riid,iMethod,pUnk) (This)->lpVtbl->ContextCallback(This,pCallback,pParam,riid,iMethod,pUnk)
#else
/*** IUnknown methods ***/
static FORCEINLINE HRESULT IContextCallback_QueryInterface(IContextCallback* This,REFIID riid,void **ppvObject) {
return This->lpVtbl->QueryInterface(This,riid,ppvObject);
}
static FORCEINLINE ULONG IContextCallback_AddRef(IContextCallback* This) {
return This->lpVtbl->AddRef(This);
}
static FORCEINLINE ULONG IContextCallback_Release(IContextCallback* This) {
return This->lpVtbl->Release(This);
}
/*** IContextCallback methods ***/
static FORCEINLINE HRESULT IContextCallback_ContextCallback(IContextCallback* This,HRESULT (__stdcall * pCallback)(ComCallData *pParam),ComCallData *pParam,REFIID riid,int iMethod,IUnknown *pUnk) {
return This->lpVtbl->ContextCallback(This,pCallback,pParam,riid,iMethod,pUnk);
}
#endif
#endif
#endif
HRESULT STDMETHODCALLTYPE IContextCallback_ContextCallback_Proxy(
IContextCallback* This,
HRESULT (__stdcall * pCallback)(ComCallData *pParam),
ComCallData *pParam,
REFIID riid,
int iMethod,
IUnknown *pUnk);
void __RPC_STUB IContextCallback_ContextCallback_Stub(
IRpcStubBuffer* This,
IRpcChannelBuffer* pRpcChannelBuffer,
PRPC_MESSAGE pRpcMessage,
DWORD* pdwStubPhase);
#endif /* __IContextCallback_INTERFACE_DEFINED__ */
/* Begin additional prototypes for all interfaces */
/* End additional prototypes */
#ifdef __cplusplus
}
#endif
#endif /* __ctxtcall_h__ */
|