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.

193 lines
4.8 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.0357 */
  4. /* Compiler settings for regbag.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 __regbag_h__
  27. #define __regbag_h__
  28. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  29. #pragma once
  30. #endif
  31. /* Forward Declarations */
  32. #ifndef __ICreatePropBagOnRegKey_FWD_DEFINED__
  33. #define __ICreatePropBagOnRegKey_FWD_DEFINED__
  34. typedef interface ICreatePropBagOnRegKey ICreatePropBagOnRegKey;
  35. #endif /* __ICreatePropBagOnRegKey_FWD_DEFINED__ */
  36. /* header files for imported files */
  37. #include "objidl.h"
  38. #include "oaidl.h"
  39. #include "ocidl.h"
  40. #ifdef __cplusplus
  41. extern "C"{
  42. #endif
  43. void * __RPC_USER MIDL_user_allocate(size_t);
  44. void __RPC_USER MIDL_user_free( void * );
  45. /* interface __MIDL_itf_regbag_0000 */
  46. /* [local] */
  47. //+-------------------------------------------------------------------------
  48. //
  49. // Microsoft Windows
  50. // Copyright (C) Microsoft Corporation, 1999-2000.
  51. //
  52. //--------------------------------------------------------------------------
  53. #pragma once
  54. extern RPC_IF_HANDLE __MIDL_itf_regbag_0000_v0_0_c_ifspec;
  55. extern RPC_IF_HANDLE __MIDL_itf_regbag_0000_v0_0_s_ifspec;
  56. #ifndef __ICreatePropBagOnRegKey_INTERFACE_DEFINED__
  57. #define __ICreatePropBagOnRegKey_INTERFACE_DEFINED__
  58. /* interface ICreatePropBagOnRegKey */
  59. /* [local][unique][helpstring][uuid][restricted][hidden][object] */
  60. EXTERN_C const IID IID_ICreatePropBagOnRegKey;
  61. #if defined(__cplusplus) && !defined(CINTERFACE)
  62. MIDL_INTERFACE("8A674B48-1F63-11d3-B64C-00C04F79498E")
  63. ICreatePropBagOnRegKey : public IUnknown
  64. {
  65. public:
  66. virtual HRESULT STDMETHODCALLTYPE Create(
  67. /* [in] */ HKEY hkey,
  68. /* [in] */ LPCOLESTR subkey,
  69. /* [in] */ DWORD ulOptions,
  70. /* [in] */ DWORD samDesired,
  71. REFIID iid,
  72. /* [out] */ LPVOID *ppBag) = 0;
  73. };
  74. #else /* C style interface */
  75. typedef struct ICreatePropBagOnRegKeyVtbl
  76. {
  77. BEGIN_INTERFACE
  78. HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
  79. ICreatePropBagOnRegKey * This,
  80. /* [in] */ REFIID riid,
  81. /* [iid_is][out] */ void **ppvObject);
  82. ULONG ( STDMETHODCALLTYPE *AddRef )(
  83. ICreatePropBagOnRegKey * This);
  84. ULONG ( STDMETHODCALLTYPE *Release )(
  85. ICreatePropBagOnRegKey * This);
  86. HRESULT ( STDMETHODCALLTYPE *Create )(
  87. ICreatePropBagOnRegKey * This,
  88. /* [in] */ HKEY hkey,
  89. /* [in] */ LPCOLESTR subkey,
  90. /* [in] */ DWORD ulOptions,
  91. /* [in] */ DWORD samDesired,
  92. REFIID iid,
  93. /* [out] */ LPVOID *ppBag);
  94. END_INTERFACE
  95. } ICreatePropBagOnRegKeyVtbl;
  96. interface ICreatePropBagOnRegKey
  97. {
  98. CONST_VTBL struct ICreatePropBagOnRegKeyVtbl *lpVtbl;
  99. };
  100. #ifdef COBJMACROS
  101. #define ICreatePropBagOnRegKey_QueryInterface(This,riid,ppvObject) \
  102. (This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
  103. #define ICreatePropBagOnRegKey_AddRef(This) \
  104. (This)->lpVtbl -> AddRef(This)
  105. #define ICreatePropBagOnRegKey_Release(This) \
  106. (This)->lpVtbl -> Release(This)
  107. #define ICreatePropBagOnRegKey_Create(This,hkey,subkey,ulOptions,samDesired,iid,ppBag) \
  108. (This)->lpVtbl -> Create(This,hkey,subkey,ulOptions,samDesired,iid,ppBag)
  109. #endif /* COBJMACROS */
  110. #endif /* C style interface */
  111. HRESULT STDMETHODCALLTYPE ICreatePropBagOnRegKey_Create_Proxy(
  112. ICreatePropBagOnRegKey * This,
  113. /* [in] */ HKEY hkey,
  114. /* [in] */ LPCOLESTR subkey,
  115. /* [in] */ DWORD ulOptions,
  116. /* [in] */ DWORD samDesired,
  117. REFIID iid,
  118. /* [out] */ LPVOID *ppBag);
  119. void __RPC_STUB ICreatePropBagOnRegKey_Create_Stub(
  120. IRpcStubBuffer *This,
  121. IRpcChannelBuffer *_pRpcChannelBuffer,
  122. PRPC_MESSAGE _pRpcMessage,
  123. DWORD *_pdwStubPhase);
  124. #endif /* __ICreatePropBagOnRegKey_INTERFACE_DEFINED__ */
  125. /* Additional Prototypes for ALL interfaces */
  126. /* end of Additional Prototypes */
  127. #ifdef __cplusplus
  128. }
  129. #endif
  130. #endif