ObjSafe.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:8k
源码类别:

模拟服务器

开发平台:

C/C++

  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.0347 */
  4. /* Compiler settings for objsafe.idl:
  5.     Oicf, W1, Zp8, env=Win32 (32b run)
  6.     protocol : dce , ms_ext, c_ext
  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__ 440
  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 __objsafe_h__
  27. #define __objsafe_h__
  28. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  29. #pragma once
  30. #endif
  31. /* Forward Declarations */ 
  32. #ifndef __IObjectSafety_FWD_DEFINED__
  33. #define __IObjectSafety_FWD_DEFINED__
  34. typedef interface IObjectSafety IObjectSafety;
  35. #endif  /* __IObjectSafety_FWD_DEFINED__ */
  36. /* header files for imported files */
  37. #include "unknwn.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_objsafe_0000 */
  44. /* [local] */ 
  45. //=--------------------------------------------------------------------------=
  46. // ObjSafe.h
  47. //=--------------------------------------------------------------------------=
  48. // (C) Copyright 1995-1998 Microsoft Corporation.  All Rights Reserved.
  49. //
  50. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  51. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  52. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  53. // PARTICULAR PURPOSE.
  54. //=--------------------------------------------------------------------------=
  55. #pragma comment(lib,"uuid.lib")
  56. //---------------------------------------------------------------------------=
  57. // Object Safety Interfaces.
  58. //+--------------------------------------------------------------------------=
  59. //
  60. //  Contents:   IObjectSafety definition
  61. //
  62. //
  63. //  IObjectSafety should be implemented by objects that have interfaces which
  64. //      support "untrusted" clients (for example, scripts). It allows the owner of
  65. //      the object to specify which interfaces need to be protected from untrusted
  66. //      use. Examples of interfaces that might be protected in this way are:
  67. //
  68. //      IID_IDispatch           - "Safe for automating with untrusted automation client or script"
  69. //      IID_IPersist*           - "Safe for initializing with untrusted data"
  70. //      IID_IActiveScript       - "Safe for running untrusted scripts"
  71. //
  72. //---------------------------------------------------------------------------=
  73. #ifndef _LPSAFEOBJECT_DEFINED
  74. #define _LPSAFEOBJECT_DEFINED
  75. // Option bit definitions for IObjectSafety:
  76. #define INTERFACESAFE_FOR_UNTRUSTED_CALLER 0x00000001 // Caller of interface may be untrusted
  77. #define INTERFACESAFE_FOR_UNTRUSTED_DATA 0x00000002 // Data passed into interface may be untrusted
  78. #define INTERFACE_USES_DISPEX             0x00000004 // Object knows to use IDispatchEx
  79. #define INTERFACE_USES_SECURITY_MANAGER     0x00000008 // Object knows to use IInternetHostSecurityManager
  80. // {CB5BDC81-93C1-11cf-8F20-00805F2CD064}
  81. DEFINE_GUID(IID_IObjectSafety, 0xcb5bdc81, 0x93c1, 0x11cf, 0x8f, 0x20, 0x0, 0x80, 0x5f, 0x2c, 0xd0, 0x64);
  82. EXTERN_C GUID CATID_SafeForScripting;
  83. EXTERN_C GUID CATID_SafeForInitializing;
  84. extern RPC_IF_HANDLE __MIDL_itf_objsafe_0000_v0_0_c_ifspec;
  85. extern RPC_IF_HANDLE __MIDL_itf_objsafe_0000_v0_0_s_ifspec;
  86. #ifndef __IObjectSafety_INTERFACE_DEFINED__
  87. #define __IObjectSafety_INTERFACE_DEFINED__
  88. /* interface IObjectSafety */
  89. /* [unique][uuid][object] */ 
  90. EXTERN_C const IID IID_IObjectSafety;
  91. #if defined(__cplusplus) && !defined(CINTERFACE)
  92.     
  93.     MIDL_INTERFACE("CB5BDC81-93C1-11cf-8F20-00805F2CD064")
  94.     IObjectSafety : public IUnknown
  95.     {
  96.     public:
  97.         virtual HRESULT STDMETHODCALLTYPE GetInterfaceSafetyOptions( 
  98.             /* [in] */ REFIID riid,
  99.             /* [out] */ DWORD *pdwSupportedOptions,
  100.             /* [out] */ DWORD *pdwEnabledOptions) = 0;
  101.         
  102.         virtual HRESULT STDMETHODCALLTYPE SetInterfaceSafetyOptions( 
  103.             /* [in] */ REFIID riid,
  104.             /* [in] */ DWORD dwOptionSetMask,
  105.             /* [in] */ DWORD dwEnabledOptions) = 0;
  106.         
  107.     };
  108.     
  109. #else  /* C style interface */
  110.     typedef struct IObjectSafetyVtbl
  111.     {
  112.         BEGIN_INTERFACE
  113.         
  114.         HRESULT ( STDMETHODCALLTYPE *QueryInterface )( 
  115.             IObjectSafety * This,
  116.             /* [in] */ REFIID riid,
  117.             /* [iid_is][out] */ void **ppvObject);
  118.         
  119.         ULONG ( STDMETHODCALLTYPE *AddRef )( 
  120.             IObjectSafety * This);
  121.         
  122.         ULONG ( STDMETHODCALLTYPE *Release )( 
  123.             IObjectSafety * This);
  124.         
  125.         HRESULT ( STDMETHODCALLTYPE *GetInterfaceSafetyOptions )( 
  126.             IObjectSafety * This,
  127.             /* [in] */ REFIID riid,
  128.             /* [out] */ DWORD *pdwSupportedOptions,
  129.             /* [out] */ DWORD *pdwEnabledOptions);
  130.         
  131.         HRESULT ( STDMETHODCALLTYPE *SetInterfaceSafetyOptions )( 
  132.             IObjectSafety * This,
  133.             /* [in] */ REFIID riid,
  134.             /* [in] */ DWORD dwOptionSetMask,
  135.             /* [in] */ DWORD dwEnabledOptions);
  136.         
  137.         END_INTERFACE
  138.     } IObjectSafetyVtbl;
  139.     interface IObjectSafety
  140.     {
  141.         CONST_VTBL struct IObjectSafetyVtbl *lpVtbl;
  142.     };
  143.     
  144. #ifdef COBJMACROS
  145. #define IObjectSafety_QueryInterface(This,riid,ppvObject)
  146.     (This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
  147. #define IObjectSafety_AddRef(This)
  148.     (This)->lpVtbl -> AddRef(This)
  149. #define IObjectSafety_Release(This)
  150.     (This)->lpVtbl -> Release(This)
  151. #define IObjectSafety_GetInterfaceSafetyOptions(This,riid,pdwSupportedOptions,pdwEnabledOptions)
  152.     (This)->lpVtbl -> GetInterfaceSafetyOptions(This,riid,pdwSupportedOptions,pdwEnabledOptions)
  153. #define IObjectSafety_SetInterfaceSafetyOptions(This,riid,dwOptionSetMask,dwEnabledOptions)
  154.     (This)->lpVtbl -> SetInterfaceSafetyOptions(This,riid,dwOptionSetMask,dwEnabledOptions)
  155. #endif /* COBJMACROS */
  156. #endif  /* C style interface */
  157. HRESULT STDMETHODCALLTYPE IObjectSafety_GetInterfaceSafetyOptions_Proxy( 
  158.     IObjectSafety * This,
  159.     /* [in] */ REFIID riid,
  160.     /* [out] */ DWORD *pdwSupportedOptions,
  161.     /* [out] */ DWORD *pdwEnabledOptions);
  162. void __RPC_STUB IObjectSafety_GetInterfaceSafetyOptions_Stub(
  163.     IRpcStubBuffer *This,
  164.     IRpcChannelBuffer *_pRpcChannelBuffer,
  165.     PRPC_MESSAGE _pRpcMessage,
  166.     DWORD *_pdwStubPhase);
  167. HRESULT STDMETHODCALLTYPE IObjectSafety_SetInterfaceSafetyOptions_Proxy( 
  168.     IObjectSafety * This,
  169.     /* [in] */ REFIID riid,
  170.     /* [in] */ DWORD dwOptionSetMask,
  171.     /* [in] */ DWORD dwEnabledOptions);
  172. void __RPC_STUB IObjectSafety_SetInterfaceSafetyOptions_Stub(
  173.     IRpcStubBuffer *This,
  174.     IRpcChannelBuffer *_pRpcChannelBuffer,
  175.     PRPC_MESSAGE _pRpcMessage,
  176.     DWORD *_pdwStubPhase);
  177. #endif  /* __IObjectSafety_INTERFACE_DEFINED__ */
  178. /* interface __MIDL_itf_objsafe_0009 */
  179. /* [local] */ 
  180. typedef /* [unique] */ IObjectSafety *LPOBJECTSAFETY;
  181. #endif
  182. extern RPC_IF_HANDLE __MIDL_itf_objsafe_0009_v0_0_c_ifspec;
  183. extern RPC_IF_HANDLE __MIDL_itf_objsafe_0009_v0_0_s_ifspec;
  184. /* Additional Prototypes for ALL interfaces */
  185. /* end of Additional Prototypes */
  186. #ifdef __cplusplus
  187. }
  188. #endif
  189. #endif