Leaked source code of windows server 2003
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.

450 lines
15 KiB

  1. /* this ALWAYS GENERATED file contains the definitions for the interfaces */
  2. /* File created by MIDL compiler version 6.00.0361 */
  3. /* Compiler settings for datacontainerversion.idl:
  4. Oicf, W1, Zp8, env=Win32 (32b run)
  5. protocol : dce , ms_ext, c_ext, robust
  6. error checks: allocation ref bounds_check enum stub_data
  7. VC __declspec() decoration level:
  8. __declspec(uuid()), __declspec(selectany), __declspec(novtable)
  9. DECLSPEC_UUID(), MIDL_INTERFACE()
  10. */
  11. //@@MIDL_FILE_HEADING( )
  12. #pragma warning( disable: 4049 ) /* more than 64k source lines */
  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 __datacontainerversion_h__
  27. #define __datacontainerversion_h__
  28. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  29. #pragma once
  30. #endif
  31. /* Forward Declarations */
  32. #ifndef __IWMSDataContainerVersion_FWD_DEFINED__
  33. #define __IWMSDataContainerVersion_FWD_DEFINED__
  34. typedef interface IWMSDataContainerVersion IWMSDataContainerVersion;
  35. #endif /* __IWMSDataContainerVersion_FWD_DEFINED__ */
  36. /* header files for imported files */
  37. #include "objidl.h"
  38. #ifdef __cplusplus
  39. extern "C"{
  40. #endif
  41. void * __RPC_USER MIDL_user_allocate(size_t);
  42. void __RPC_USER MIDL_user_free( void * );
  43. /* interface __MIDL_itf_datacontainerversion_0000 */
  44. /* [local] */
  45. //*****************************************************************************
  46. //
  47. // Microsoft Windows Media
  48. // Copyright (C) Microsoft Corporation. All rights reserved.
  49. //
  50. // Automatically generated by Midl from datacontainerversion.idl
  51. //
  52. // DO NOT EDIT THIS FILE.
  53. //
  54. //*****************************************************************************
  55. #if _MSC_VER > 1000
  56. #pragma once
  57. #endif // _MSC_VER > 1000
  58. EXTERN_GUID( IID_IWMSDataContainerVersion, 0x3AE75C14,0x2B3A,0x11d2,0x9E,0xF7,0x00,0x60,0x97,0xD2,0xD7,0xCF );
  59. typedef /* [public] */
  60. enum WMS_DATA_CONTAINER_VERSION_CACHE_FLAGS
  61. { WMS_DATA_CONTAINER_VERSION_ALLOW_PROXY_CACHING = 0x1,
  62. WMS_DATA_CONTAINER_VERSION_ALLOW_PLAYER_CACHING = 0x2,
  63. WMS_DATA_CONTAINER_VERSION_ALLOW_STREAM_SPLITTING = 0x4
  64. } WMS_DATA_CONTAINER_VERSION_CACHE_FLAGS;
  65. extern RPC_IF_HANDLE __MIDL_itf_datacontainerversion_0000_v0_0_c_ifspec;
  66. extern RPC_IF_HANDLE __MIDL_itf_datacontainerversion_0000_v0_0_s_ifspec;
  67. #ifndef __IWMSDataContainerVersion_INTERFACE_DEFINED__
  68. #define __IWMSDataContainerVersion_INTERFACE_DEFINED__
  69. /* interface IWMSDataContainerVersion */
  70. /* [helpstring][version][uuid][unique][object] */
  71. EXTERN_C const IID IID_IWMSDataContainerVersion;
  72. #if defined(__cplusplus) && !defined(CINTERFACE)
  73. MIDL_INTERFACE("3AE75C14-2B3A-11d2-9EF7-006097D2D7CF")
  74. IWMSDataContainerVersion : public IUnknown
  75. {
  76. public:
  77. virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE GetLastModifiedTime(
  78. /* [out] */ DATE *pdateLastModifiedTime) = 0;
  79. virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE SetLastModifiedTime(
  80. /* [in] */ DATE dateLastModifiedTime) = 0;
  81. virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE GetExpirationTime(
  82. /* [out] */ DATE *pdateExpirationTime) = 0;
  83. virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE SetExpirationTime(
  84. /* [in] */ DATE dateExpirationTime) = 0;
  85. virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE GetCacheFlags(
  86. /* [out] */ long *plFlags) = 0;
  87. virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE SetCacheFlags(
  88. /* [in] */ long lFlags) = 0;
  89. virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE GetContentSize(
  90. /* [out] */ long *plContentSizeLow,
  91. /* [out] */ long *plContentSizeHigh) = 0;
  92. virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE SetContentSize(
  93. /* [in] */ long lContentSizeLow,
  94. /* [in] */ long lContentSizeHigh) = 0;
  95. virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE GetEntityTagCount(
  96. /* [out] */ long *plNumEntityTags) = 0;
  97. virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE GetEntityTag(
  98. /* [in] */ long lTagNum,
  99. /* [out] */ BSTR *pszEntityTag) = 0;
  100. virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE SetEntityTag(
  101. /* [in] */ BSTR szEntityTag) = 0;
  102. virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE Compare(
  103. /* [in] */ IWMSDataContainerVersion *pVersion,
  104. /* [out] */ VARIANT_BOOL *pvfEqual) = 0;
  105. };
  106. #else /* C style interface */
  107. typedef struct IWMSDataContainerVersionVtbl
  108. {
  109. BEGIN_INTERFACE
  110. HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
  111. IWMSDataContainerVersion * This,
  112. /* [in] */ REFIID riid,
  113. /* [iid_is][out] */ void **ppvObject);
  114. ULONG ( STDMETHODCALLTYPE *AddRef )(
  115. IWMSDataContainerVersion * This);
  116. ULONG ( STDMETHODCALLTYPE *Release )(
  117. IWMSDataContainerVersion * This);
  118. /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *GetLastModifiedTime )(
  119. IWMSDataContainerVersion * This,
  120. /* [out] */ DATE *pdateLastModifiedTime);
  121. /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *SetLastModifiedTime )(
  122. IWMSDataContainerVersion * This,
  123. /* [in] */ DATE dateLastModifiedTime);
  124. /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *GetExpirationTime )(
  125. IWMSDataContainerVersion * This,
  126. /* [out] */ DATE *pdateExpirationTime);
  127. /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *SetExpirationTime )(
  128. IWMSDataContainerVersion * This,
  129. /* [in] */ DATE dateExpirationTime);
  130. /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *GetCacheFlags )(
  131. IWMSDataContainerVersion * This,
  132. /* [out] */ long *plFlags);
  133. /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *SetCacheFlags )(
  134. IWMSDataContainerVersion * This,
  135. /* [in] */ long lFlags);
  136. /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *GetContentSize )(
  137. IWMSDataContainerVersion * This,
  138. /* [out] */ long *plContentSizeLow,
  139. /* [out] */ long *plContentSizeHigh);
  140. /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *SetContentSize )(
  141. IWMSDataContainerVersion * This,
  142. /* [in] */ long lContentSizeLow,
  143. /* [in] */ long lContentSizeHigh);
  144. /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *GetEntityTagCount )(
  145. IWMSDataContainerVersion * This,
  146. /* [out] */ long *plNumEntityTags);
  147. /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *GetEntityTag )(
  148. IWMSDataContainerVersion * This,
  149. /* [in] */ long lTagNum,
  150. /* [out] */ BSTR *pszEntityTag);
  151. /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *SetEntityTag )(
  152. IWMSDataContainerVersion * This,
  153. /* [in] */ BSTR szEntityTag);
  154. /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *Compare )(
  155. IWMSDataContainerVersion * This,
  156. /* [in] */ IWMSDataContainerVersion *pVersion,
  157. /* [out] */ VARIANT_BOOL *pvfEqual);
  158. END_INTERFACE
  159. } IWMSDataContainerVersionVtbl;
  160. interface IWMSDataContainerVersion
  161. {
  162. CONST_VTBL struct IWMSDataContainerVersionVtbl *lpVtbl;
  163. };
  164. #ifdef COBJMACROS
  165. #define IWMSDataContainerVersion_QueryInterface(This,riid,ppvObject) \
  166. (This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
  167. #define IWMSDataContainerVersion_AddRef(This) \
  168. (This)->lpVtbl -> AddRef(This)
  169. #define IWMSDataContainerVersion_Release(This) \
  170. (This)->lpVtbl -> Release(This)
  171. #define IWMSDataContainerVersion_GetLastModifiedTime(This,pdateLastModifiedTime) \
  172. (This)->lpVtbl -> GetLastModifiedTime(This,pdateLastModifiedTime)
  173. #define IWMSDataContainerVersion_SetLastModifiedTime(This,dateLastModifiedTime) \
  174. (This)->lpVtbl -> SetLastModifiedTime(This,dateLastModifiedTime)
  175. #define IWMSDataContainerVersion_GetExpirationTime(This,pdateExpirationTime) \
  176. (This)->lpVtbl -> GetExpirationTime(This,pdateExpirationTime)
  177. #define IWMSDataContainerVersion_SetExpirationTime(This,dateExpirationTime) \
  178. (This)->lpVtbl -> SetExpirationTime(This,dateExpirationTime)
  179. #define IWMSDataContainerVersion_GetCacheFlags(This,plFlags) \
  180. (This)->lpVtbl -> GetCacheFlags(This,plFlags)
  181. #define IWMSDataContainerVersion_SetCacheFlags(This,lFlags) \
  182. (This)->lpVtbl -> SetCacheFlags(This,lFlags)
  183. #define IWMSDataContainerVersion_GetContentSize(This,plContentSizeLow,plContentSizeHigh) \
  184. (This)->lpVtbl -> GetContentSize(This,plContentSizeLow,plContentSizeHigh)
  185. #define IWMSDataContainerVersion_SetContentSize(This,lContentSizeLow,lContentSizeHigh) \
  186. (This)->lpVtbl -> SetContentSize(This,lContentSizeLow,lContentSizeHigh)
  187. #define IWMSDataContainerVersion_GetEntityTagCount(This,plNumEntityTags) \
  188. (This)->lpVtbl -> GetEntityTagCount(This,plNumEntityTags)
  189. #define IWMSDataContainerVersion_GetEntityTag(This,lTagNum,pszEntityTag) \
  190. (This)->lpVtbl -> GetEntityTag(This,lTagNum,pszEntityTag)
  191. #define IWMSDataContainerVersion_SetEntityTag(This,szEntityTag) \
  192. (This)->lpVtbl -> SetEntityTag(This,szEntityTag)
  193. #define IWMSDataContainerVersion_Compare(This,pVersion,pvfEqual) \
  194. (This)->lpVtbl -> Compare(This,pVersion,pvfEqual)
  195. #endif /* COBJMACROS */
  196. #endif /* C style interface */
  197. /* [helpstring] */ HRESULT STDMETHODCALLTYPE IWMSDataContainerVersion_GetLastModifiedTime_Proxy(
  198. IWMSDataContainerVersion * This,
  199. /* [out] */ DATE *pdateLastModifiedTime);
  200. void __RPC_STUB IWMSDataContainerVersion_GetLastModifiedTime_Stub(
  201. IRpcStubBuffer *This,
  202. IRpcChannelBuffer *_pRpcChannelBuffer,
  203. PRPC_MESSAGE _pRpcMessage,
  204. DWORD *_pdwStubPhase);
  205. /* [helpstring] */ HRESULT STDMETHODCALLTYPE IWMSDataContainerVersion_SetLastModifiedTime_Proxy(
  206. IWMSDataContainerVersion * This,
  207. /* [in] */ DATE dateLastModifiedTime);
  208. void __RPC_STUB IWMSDataContainerVersion_SetLastModifiedTime_Stub(
  209. IRpcStubBuffer *This,
  210. IRpcChannelBuffer *_pRpcChannelBuffer,
  211. PRPC_MESSAGE _pRpcMessage,
  212. DWORD *_pdwStubPhase);
  213. /* [helpstring] */ HRESULT STDMETHODCALLTYPE IWMSDataContainerVersion_GetExpirationTime_Proxy(
  214. IWMSDataContainerVersion * This,
  215. /* [out] */ DATE *pdateExpirationTime);
  216. void __RPC_STUB IWMSDataContainerVersion_GetExpirationTime_Stub(
  217. IRpcStubBuffer *This,
  218. IRpcChannelBuffer *_pRpcChannelBuffer,
  219. PRPC_MESSAGE _pRpcMessage,
  220. DWORD *_pdwStubPhase);
  221. /* [helpstring] */ HRESULT STDMETHODCALLTYPE IWMSDataContainerVersion_SetExpirationTime_Proxy(
  222. IWMSDataContainerVersion * This,
  223. /* [in] */ DATE dateExpirationTime);
  224. void __RPC_STUB IWMSDataContainerVersion_SetExpirationTime_Stub(
  225. IRpcStubBuffer *This,
  226. IRpcChannelBuffer *_pRpcChannelBuffer,
  227. PRPC_MESSAGE _pRpcMessage,
  228. DWORD *_pdwStubPhase);
  229. /* [helpstring] */ HRESULT STDMETHODCALLTYPE IWMSDataContainerVersion_GetCacheFlags_Proxy(
  230. IWMSDataContainerVersion * This,
  231. /* [out] */ long *plFlags);
  232. void __RPC_STUB IWMSDataContainerVersion_GetCacheFlags_Stub(
  233. IRpcStubBuffer *This,
  234. IRpcChannelBuffer *_pRpcChannelBuffer,
  235. PRPC_MESSAGE _pRpcMessage,
  236. DWORD *_pdwStubPhase);
  237. /* [helpstring] */ HRESULT STDMETHODCALLTYPE IWMSDataContainerVersion_SetCacheFlags_Proxy(
  238. IWMSDataContainerVersion * This,
  239. /* [in] */ long lFlags);
  240. void __RPC_STUB IWMSDataContainerVersion_SetCacheFlags_Stub(
  241. IRpcStubBuffer *This,
  242. IRpcChannelBuffer *_pRpcChannelBuffer,
  243. PRPC_MESSAGE _pRpcMessage,
  244. DWORD *_pdwStubPhase);
  245. /* [helpstring] */ HRESULT STDMETHODCALLTYPE IWMSDataContainerVersion_GetContentSize_Proxy(
  246. IWMSDataContainerVersion * This,
  247. /* [out] */ long *plContentSizeLow,
  248. /* [out] */ long *plContentSizeHigh);
  249. void __RPC_STUB IWMSDataContainerVersion_GetContentSize_Stub(
  250. IRpcStubBuffer *This,
  251. IRpcChannelBuffer *_pRpcChannelBuffer,
  252. PRPC_MESSAGE _pRpcMessage,
  253. DWORD *_pdwStubPhase);
  254. /* [helpstring] */ HRESULT STDMETHODCALLTYPE IWMSDataContainerVersion_SetContentSize_Proxy(
  255. IWMSDataContainerVersion * This,
  256. /* [in] */ long lContentSizeLow,
  257. /* [in] */ long lContentSizeHigh);
  258. void __RPC_STUB IWMSDataContainerVersion_SetContentSize_Stub(
  259. IRpcStubBuffer *This,
  260. IRpcChannelBuffer *_pRpcChannelBuffer,
  261. PRPC_MESSAGE _pRpcMessage,
  262. DWORD *_pdwStubPhase);
  263. /* [helpstring] */ HRESULT STDMETHODCALLTYPE IWMSDataContainerVersion_GetEntityTagCount_Proxy(
  264. IWMSDataContainerVersion * This,
  265. /* [out] */ long *plNumEntityTags);
  266. void __RPC_STUB IWMSDataContainerVersion_GetEntityTagCount_Stub(
  267. IRpcStubBuffer *This,
  268. IRpcChannelBuffer *_pRpcChannelBuffer,
  269. PRPC_MESSAGE _pRpcMessage,
  270. DWORD *_pdwStubPhase);
  271. /* [helpstring] */ HRESULT STDMETHODCALLTYPE IWMSDataContainerVersion_GetEntityTag_Proxy(
  272. IWMSDataContainerVersion * This,
  273. /* [in] */ long lTagNum,
  274. /* [out] */ BSTR *pszEntityTag);
  275. void __RPC_STUB IWMSDataContainerVersion_GetEntityTag_Stub(
  276. IRpcStubBuffer *This,
  277. IRpcChannelBuffer *_pRpcChannelBuffer,
  278. PRPC_MESSAGE _pRpcMessage,
  279. DWORD *_pdwStubPhase);
  280. /* [helpstring] */ HRESULT STDMETHODCALLTYPE IWMSDataContainerVersion_SetEntityTag_Proxy(
  281. IWMSDataContainerVersion * This,
  282. /* [in] */ BSTR szEntityTag);
  283. void __RPC_STUB IWMSDataContainerVersion_SetEntityTag_Stub(
  284. IRpcStubBuffer *This,
  285. IRpcChannelBuffer *_pRpcChannelBuffer,
  286. PRPC_MESSAGE _pRpcMessage,
  287. DWORD *_pdwStubPhase);
  288. /* [helpstring] */ HRESULT STDMETHODCALLTYPE IWMSDataContainerVersion_Compare_Proxy(
  289. IWMSDataContainerVersion * This,
  290. /* [in] */ IWMSDataContainerVersion *pVersion,
  291. /* [out] */ VARIANT_BOOL *pvfEqual);
  292. void __RPC_STUB IWMSDataContainerVersion_Compare_Stub(
  293. IRpcStubBuffer *This,
  294. IRpcChannelBuffer *_pRpcChannelBuffer,
  295. PRPC_MESSAGE _pRpcMessage,
  296. DWORD *_pdwStubPhase);
  297. #endif /* __IWMSDataContainerVersion_INTERFACE_DEFINED__ */
  298. /* Additional Prototypes for ALL interfaces */
  299. unsigned long __RPC_USER BSTR_UserSize( unsigned long *, unsigned long , BSTR * );
  300. unsigned char * __RPC_USER BSTR_UserMarshal( unsigned long *, unsigned char *, BSTR * );
  301. unsigned char * __RPC_USER BSTR_UserUnmarshal(unsigned long *, unsigned char *, BSTR * );
  302. void __RPC_USER BSTR_UserFree( unsigned long *, BSTR * );
  303. /* end of Additional Prototypes */
  304. #ifdef __cplusplus
  305. }
  306. #endif
  307. #endif