Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

329 lines
9.1 KiB

  1. #pragma warning( disable: 4049 ) /* more than 64k source lines */
  2. /* this ALWAYS GENERATED file contains the definitions for the interfaces */
  3. /* File created by MIDL compiler version 6.00.0338 */
  4. /* Compiler settings for dshowasf.idl:
  5. Oicf, W1, Zp8, env=Win32 (32b run)
  6. protocol : dce , ms_ext, c_ext, robust
  7. error checks: allocation ref bounds_check enum stub_data
  8. VC __declspec() decoration level:
  9. __declspec(uuid()), __declspec(selectany), __declspec(novtable)
  10. DECLSPEC_UUID(), MIDL_INTERFACE()
  11. */
  12. //@@MIDL_FILE_HEADING( )
  13. /* verify that the <rpcndr.h> version is high enough to compile this file*/
  14. #ifndef __REQUIRED_RPCNDR_H_VERSION__
  15. #define __REQUIRED_RPCNDR_H_VERSION__ 475
  16. #endif
  17. #include "rpc.h"
  18. #include "rpcndr.h"
  19. #ifndef __RPCNDR_H_VERSION__
  20. #error this stub requires an updated version of <rpcndr.h>
  21. #endif // __RPCNDR_H_VERSION__
  22. #ifndef COM_NO_WINDOWS_H
  23. #include "windows.h"
  24. #include "ole2.h"
  25. #endif /*COM_NO_WINDOWS_H*/
  26. #ifndef __dshowasf_h__
  27. #define __dshowasf_h__
  28. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  29. #pragma once
  30. #endif
  31. /* Forward Declarations */
  32. #ifndef __IConfigAsfWriter_FWD_DEFINED__
  33. #define __IConfigAsfWriter_FWD_DEFINED__
  34. typedef interface IConfigAsfWriter IConfigAsfWriter;
  35. #endif /* __IConfigAsfWriter_FWD_DEFINED__ */
  36. /* header files for imported files */
  37. #include "unknwn.h"
  38. #include "objidl.h"
  39. #include "strmif.h"
  40. #include "wmsdkidl.h"
  41. #ifdef __cplusplus
  42. extern "C"{
  43. #endif
  44. void * __RPC_USER MIDL_user_allocate(size_t);
  45. void __RPC_USER MIDL_user_free( void * );
  46. /* interface __MIDL_itf_dshowasf_0000 */
  47. /* [local] */
  48. EXTERN_GUID( IID_IConfigAsfWriter,0x45086030,0xF7E4,0x486a,0xB5,0x04,0x82,0x6B,0xB5,0x79,0x2A,0x3B );
  49. extern RPC_IF_HANDLE __MIDL_itf_dshowasf_0000_v0_0_c_ifspec;
  50. extern RPC_IF_HANDLE __MIDL_itf_dshowasf_0000_v0_0_s_ifspec;
  51. #ifndef __IConfigAsfWriter_INTERFACE_DEFINED__
  52. #define __IConfigAsfWriter_INTERFACE_DEFINED__
  53. /* interface IConfigAsfWriter */
  54. /* [unique][uuid][object] */
  55. EXTERN_C const IID IID_IConfigAsfWriter;
  56. #if defined(__cplusplus) && !defined(CINTERFACE)
  57. MIDL_INTERFACE("45086030-F7E4-486a-B504-826BB5792A3B")
  58. IConfigAsfWriter : public IUnknown
  59. {
  60. public:
  61. virtual HRESULT STDMETHODCALLTYPE ConfigureFilterUsingProfileId(
  62. /* [in] */ DWORD dwProfileId) = 0;
  63. virtual HRESULT STDMETHODCALLTYPE GetCurrentProfileId(
  64. /* [out] */ DWORD *pdwProfileId) = 0;
  65. virtual HRESULT STDMETHODCALLTYPE ConfigureFilterUsingProfileGuid(
  66. /* [in] */ REFGUID guidProfile) = 0;
  67. virtual HRESULT STDMETHODCALLTYPE GetCurrentProfileGuid(
  68. /* [out] */ GUID *pProfileGuid) = 0;
  69. virtual HRESULT STDMETHODCALLTYPE ConfigureFilterUsingProfile(
  70. /* [in] */ IWMProfile *pProfile) = 0;
  71. virtual HRESULT STDMETHODCALLTYPE GetCurrentProfile(
  72. /* [out] */ IWMProfile **ppProfile) = 0;
  73. virtual HRESULT STDMETHODCALLTYPE SetIndexMode(
  74. /* [in] */ BOOL bIndexFile) = 0;
  75. virtual HRESULT STDMETHODCALLTYPE GetIndexMode(
  76. /* [out] */ BOOL *pbIndexFile) = 0;
  77. };
  78. #else /* C style interface */
  79. typedef struct IConfigAsfWriterVtbl
  80. {
  81. BEGIN_INTERFACE
  82. HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
  83. IConfigAsfWriter * This,
  84. /* [in] */ REFIID riid,
  85. /* [iid_is][out] */ void **ppvObject);
  86. ULONG ( STDMETHODCALLTYPE *AddRef )(
  87. IConfigAsfWriter * This);
  88. ULONG ( STDMETHODCALLTYPE *Release )(
  89. IConfigAsfWriter * This);
  90. HRESULT ( STDMETHODCALLTYPE *ConfigureFilterUsingProfileId )(
  91. IConfigAsfWriter * This,
  92. /* [in] */ DWORD dwProfileId);
  93. HRESULT ( STDMETHODCALLTYPE *GetCurrentProfileId )(
  94. IConfigAsfWriter * This,
  95. /* [out] */ DWORD *pdwProfileId);
  96. HRESULT ( STDMETHODCALLTYPE *ConfigureFilterUsingProfileGuid )(
  97. IConfigAsfWriter * This,
  98. /* [in] */ REFGUID guidProfile);
  99. HRESULT ( STDMETHODCALLTYPE *GetCurrentProfileGuid )(
  100. IConfigAsfWriter * This,
  101. /* [out] */ GUID *pProfileGuid);
  102. HRESULT ( STDMETHODCALLTYPE *ConfigureFilterUsingProfile )(
  103. IConfigAsfWriter * This,
  104. /* [in] */ IWMProfile *pProfile);
  105. HRESULT ( STDMETHODCALLTYPE *GetCurrentProfile )(
  106. IConfigAsfWriter * This,
  107. /* [out] */ IWMProfile **ppProfile);
  108. HRESULT ( STDMETHODCALLTYPE *SetIndexMode )(
  109. IConfigAsfWriter * This,
  110. /* [in] */ BOOL bIndexFile);
  111. HRESULT ( STDMETHODCALLTYPE *GetIndexMode )(
  112. IConfigAsfWriter * This,
  113. /* [out] */ BOOL *pbIndexFile);
  114. END_INTERFACE
  115. } IConfigAsfWriterVtbl;
  116. interface IConfigAsfWriter
  117. {
  118. CONST_VTBL struct IConfigAsfWriterVtbl *lpVtbl;
  119. };
  120. #ifdef COBJMACROS
  121. #define IConfigAsfWriter_QueryInterface(This,riid,ppvObject) \
  122. (This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
  123. #define IConfigAsfWriter_AddRef(This) \
  124. (This)->lpVtbl -> AddRef(This)
  125. #define IConfigAsfWriter_Release(This) \
  126. (This)->lpVtbl -> Release(This)
  127. #define IConfigAsfWriter_ConfigureFilterUsingProfileId(This,dwProfileId) \
  128. (This)->lpVtbl -> ConfigureFilterUsingProfileId(This,dwProfileId)
  129. #define IConfigAsfWriter_GetCurrentProfileId(This,pdwProfileId) \
  130. (This)->lpVtbl -> GetCurrentProfileId(This,pdwProfileId)
  131. #define IConfigAsfWriter_ConfigureFilterUsingProfileGuid(This,guidProfile) \
  132. (This)->lpVtbl -> ConfigureFilterUsingProfileGuid(This,guidProfile)
  133. #define IConfigAsfWriter_GetCurrentProfileGuid(This,pProfileGuid) \
  134. (This)->lpVtbl -> GetCurrentProfileGuid(This,pProfileGuid)
  135. #define IConfigAsfWriter_ConfigureFilterUsingProfile(This,pProfile) \
  136. (This)->lpVtbl -> ConfigureFilterUsingProfile(This,pProfile)
  137. #define IConfigAsfWriter_GetCurrentProfile(This,ppProfile) \
  138. (This)->lpVtbl -> GetCurrentProfile(This,ppProfile)
  139. #define IConfigAsfWriter_SetIndexMode(This,bIndexFile) \
  140. (This)->lpVtbl -> SetIndexMode(This,bIndexFile)
  141. #define IConfigAsfWriter_GetIndexMode(This,pbIndexFile) \
  142. (This)->lpVtbl -> GetIndexMode(This,pbIndexFile)
  143. #endif /* COBJMACROS */
  144. #endif /* C style interface */
  145. HRESULT STDMETHODCALLTYPE IConfigAsfWriter_ConfigureFilterUsingProfileId_Proxy(
  146. IConfigAsfWriter * This,
  147. /* [in] */ DWORD dwProfileId);
  148. void __RPC_STUB IConfigAsfWriter_ConfigureFilterUsingProfileId_Stub(
  149. IRpcStubBuffer *This,
  150. IRpcChannelBuffer *_pRpcChannelBuffer,
  151. PRPC_MESSAGE _pRpcMessage,
  152. DWORD *_pdwStubPhase);
  153. HRESULT STDMETHODCALLTYPE IConfigAsfWriter_GetCurrentProfileId_Proxy(
  154. IConfigAsfWriter * This,
  155. /* [out] */ DWORD *pdwProfileId);
  156. void __RPC_STUB IConfigAsfWriter_GetCurrentProfileId_Stub(
  157. IRpcStubBuffer *This,
  158. IRpcChannelBuffer *_pRpcChannelBuffer,
  159. PRPC_MESSAGE _pRpcMessage,
  160. DWORD *_pdwStubPhase);
  161. HRESULT STDMETHODCALLTYPE IConfigAsfWriter_ConfigureFilterUsingProfileGuid_Proxy(
  162. IConfigAsfWriter * This,
  163. /* [in] */ REFGUID guidProfile);
  164. void __RPC_STUB IConfigAsfWriter_ConfigureFilterUsingProfileGuid_Stub(
  165. IRpcStubBuffer *This,
  166. IRpcChannelBuffer *_pRpcChannelBuffer,
  167. PRPC_MESSAGE _pRpcMessage,
  168. DWORD *_pdwStubPhase);
  169. HRESULT STDMETHODCALLTYPE IConfigAsfWriter_GetCurrentProfileGuid_Proxy(
  170. IConfigAsfWriter * This,
  171. /* [out] */ GUID *pProfileGuid);
  172. void __RPC_STUB IConfigAsfWriter_GetCurrentProfileGuid_Stub(
  173. IRpcStubBuffer *This,
  174. IRpcChannelBuffer *_pRpcChannelBuffer,
  175. PRPC_MESSAGE _pRpcMessage,
  176. DWORD *_pdwStubPhase);
  177. HRESULT STDMETHODCALLTYPE IConfigAsfWriter_ConfigureFilterUsingProfile_Proxy(
  178. IConfigAsfWriter * This,
  179. /* [in] */ IWMProfile *pProfile);
  180. void __RPC_STUB IConfigAsfWriter_ConfigureFilterUsingProfile_Stub(
  181. IRpcStubBuffer *This,
  182. IRpcChannelBuffer *_pRpcChannelBuffer,
  183. PRPC_MESSAGE _pRpcMessage,
  184. DWORD *_pdwStubPhase);
  185. HRESULT STDMETHODCALLTYPE IConfigAsfWriter_GetCurrentProfile_Proxy(
  186. IConfigAsfWriter * This,
  187. /* [out] */ IWMProfile **ppProfile);
  188. void __RPC_STUB IConfigAsfWriter_GetCurrentProfile_Stub(
  189. IRpcStubBuffer *This,
  190. IRpcChannelBuffer *_pRpcChannelBuffer,
  191. PRPC_MESSAGE _pRpcMessage,
  192. DWORD *_pdwStubPhase);
  193. HRESULT STDMETHODCALLTYPE IConfigAsfWriter_SetIndexMode_Proxy(
  194. IConfigAsfWriter * This,
  195. /* [in] */ BOOL bIndexFile);
  196. void __RPC_STUB IConfigAsfWriter_SetIndexMode_Stub(
  197. IRpcStubBuffer *This,
  198. IRpcChannelBuffer *_pRpcChannelBuffer,
  199. PRPC_MESSAGE _pRpcMessage,
  200. DWORD *_pdwStubPhase);
  201. HRESULT STDMETHODCALLTYPE IConfigAsfWriter_GetIndexMode_Proxy(
  202. IConfigAsfWriter * This,
  203. /* [out] */ BOOL *pbIndexFile);
  204. void __RPC_STUB IConfigAsfWriter_GetIndexMode_Stub(
  205. IRpcStubBuffer *This,
  206. IRpcChannelBuffer *_pRpcChannelBuffer,
  207. PRPC_MESSAGE _pRpcMessage,
  208. DWORD *_pdwStubPhase);
  209. #endif /* __IConfigAsfWriter_INTERFACE_DEFINED__ */
  210. /* Additional Prototypes for ALL interfaces */
  211. /* end of Additional Prototypes */
  212. #ifdef __cplusplus
  213. }
  214. #endif
  215. #endif