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.

235 lines
6.6 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 wmsincomingcounters.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 __wmsincomingcounters_h__
  27. #define __wmsincomingcounters_h__
  28. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  29. #pragma once
  30. #endif
  31. /* Forward Declarations */
  32. #ifndef __IWMSIncomingCounters_FWD_DEFINED__
  33. #define __IWMSIncomingCounters_FWD_DEFINED__
  34. typedef interface IWMSIncomingCounters IWMSIncomingCounters;
  35. #endif /* __IWMSIncomingCounters_FWD_DEFINED__ */
  36. /* header files for imported files */
  37. #include "oaidl.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_wmsincomingcounters_0000 */
  44. /* [local] */
  45. //*****************************************************************************
  46. //
  47. // Microsoft Windows Media
  48. // Copyright (C) Microsoft Corporation. All rights reserved.
  49. //
  50. // Automatically generated by Midl from wmsincoming.idl
  51. //
  52. // DO NOT EDIT THIS FILE.
  53. //
  54. //*****************************************************************************
  55. #ifndef _IWMSIncomingCounters
  56. #define _IWMSIncomingCounters
  57. typedef unsigned __int64 QWORD;
  58. EXTERN_GUID( IID_IWMSIncomingCounters , 0xeded53ed,0x43b7,0x45ce,0x9c,0xbb,0xa8,0x72,0x92,0x3f,0x6a,0xae );
  59. extern RPC_IF_HANDLE __MIDL_itf_wmsincomingcounters_0000_v0_0_c_ifspec;
  60. extern RPC_IF_HANDLE __MIDL_itf_wmsincomingcounters_0000_v0_0_s_ifspec;
  61. #ifndef __IWMSIncomingCounters_INTERFACE_DEFINED__
  62. #define __IWMSIncomingCounters_INTERFACE_DEFINED__
  63. /* interface IWMSIncomingCounters */
  64. /* [unique][version][helpstring][uuid][object][local] */
  65. EXTERN_C const IID IID_IWMSIncomingCounters;
  66. #if defined(__cplusplus) && !defined(CINTERFACE)
  67. MIDL_INTERFACE("EDED53ED-43B7-45ce-9CBB-A872923F6AAE")
  68. IWMSIncomingCounters : public IUnknown
  69. {
  70. public:
  71. virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE AllocateRequestedBandwidth(
  72. /* [in] */ DWORD dwAllocatedBandwidth) = 0;
  73. virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE AddIncomingData(
  74. /* [in] */ DWORD dwDataLen) = 0;
  75. virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE ClearIncomingStats( void) = 0;
  76. };
  77. #else /* C style interface */
  78. typedef struct IWMSIncomingCountersVtbl
  79. {
  80. BEGIN_INTERFACE
  81. HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
  82. IWMSIncomingCounters * This,
  83. /* [in] */ REFIID riid,
  84. /* [iid_is][out] */ void **ppvObject);
  85. ULONG ( STDMETHODCALLTYPE *AddRef )(
  86. IWMSIncomingCounters * This);
  87. ULONG ( STDMETHODCALLTYPE *Release )(
  88. IWMSIncomingCounters * This);
  89. /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *AllocateRequestedBandwidth )(
  90. IWMSIncomingCounters * This,
  91. /* [in] */ DWORD dwAllocatedBandwidth);
  92. /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *AddIncomingData )(
  93. IWMSIncomingCounters * This,
  94. /* [in] */ DWORD dwDataLen);
  95. /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE *ClearIncomingStats )(
  96. IWMSIncomingCounters * This);
  97. END_INTERFACE
  98. } IWMSIncomingCountersVtbl;
  99. interface IWMSIncomingCounters
  100. {
  101. CONST_VTBL struct IWMSIncomingCountersVtbl *lpVtbl;
  102. };
  103. #ifdef COBJMACROS
  104. #define IWMSIncomingCounters_QueryInterface(This,riid,ppvObject) \
  105. (This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
  106. #define IWMSIncomingCounters_AddRef(This) \
  107. (This)->lpVtbl -> AddRef(This)
  108. #define IWMSIncomingCounters_Release(This) \
  109. (This)->lpVtbl -> Release(This)
  110. #define IWMSIncomingCounters_AllocateRequestedBandwidth(This,dwAllocatedBandwidth) \
  111. (This)->lpVtbl -> AllocateRequestedBandwidth(This,dwAllocatedBandwidth)
  112. #define IWMSIncomingCounters_AddIncomingData(This,dwDataLen) \
  113. (This)->lpVtbl -> AddIncomingData(This,dwDataLen)
  114. #define IWMSIncomingCounters_ClearIncomingStats(This) \
  115. (This)->lpVtbl -> ClearIncomingStats(This)
  116. #endif /* COBJMACROS */
  117. #endif /* C style interface */
  118. /* [helpstring] */ HRESULT STDMETHODCALLTYPE IWMSIncomingCounters_AllocateRequestedBandwidth_Proxy(
  119. IWMSIncomingCounters * This,
  120. /* [in] */ DWORD dwAllocatedBandwidth);
  121. void __RPC_STUB IWMSIncomingCounters_AllocateRequestedBandwidth_Stub(
  122. IRpcStubBuffer *This,
  123. IRpcChannelBuffer *_pRpcChannelBuffer,
  124. PRPC_MESSAGE _pRpcMessage,
  125. DWORD *_pdwStubPhase);
  126. /* [helpstring] */ HRESULT STDMETHODCALLTYPE IWMSIncomingCounters_AddIncomingData_Proxy(
  127. IWMSIncomingCounters * This,
  128. /* [in] */ DWORD dwDataLen);
  129. void __RPC_STUB IWMSIncomingCounters_AddIncomingData_Stub(
  130. IRpcStubBuffer *This,
  131. IRpcChannelBuffer *_pRpcChannelBuffer,
  132. PRPC_MESSAGE _pRpcMessage,
  133. DWORD *_pdwStubPhase);
  134. /* [helpstring] */ HRESULT STDMETHODCALLTYPE IWMSIncomingCounters_ClearIncomingStats_Proxy(
  135. IWMSIncomingCounters * This);
  136. void __RPC_STUB IWMSIncomingCounters_ClearIncomingStats_Stub(
  137. IRpcStubBuffer *This,
  138. IRpcChannelBuffer *_pRpcChannelBuffer,
  139. PRPC_MESSAGE _pRpcMessage,
  140. DWORD *_pdwStubPhase);
  141. #endif /* __IWMSIncomingCounters_INTERFACE_DEFINED__ */
  142. /* interface __MIDL_itf_wmsincomingcounters_0115 */
  143. /* [local] */
  144. #endif
  145. extern RPC_IF_HANDLE __MIDL_itf_wmsincomingcounters_0115_v0_0_c_ifspec;
  146. extern RPC_IF_HANDLE __MIDL_itf_wmsincomingcounters_0115_v0_0_s_ifspec;
  147. /* Additional Prototypes for ALL interfaces */
  148. /* end of Additional Prototypes */
  149. #ifdef __cplusplus
  150. }
  151. #endif
  152. #endif