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.

213 lines
5.8 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 permdlg.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 __permdlg_h__
  27. #define __permdlg_h__
  28. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  29. #pragma once
  30. #endif
  31. /* Forward Declarations */
  32. #ifndef __IJavaZonePermissionEditor_FWD_DEFINED__
  33. #define __IJavaZonePermissionEditor_FWD_DEFINED__
  34. typedef interface IJavaZonePermissionEditor IJavaZonePermissionEditor;
  35. #endif /* __IJavaZonePermissionEditor_FWD_DEFINED__ */
  36. #ifndef __JavaRuntimeConfiguration_FWD_DEFINED__
  37. #define __JavaRuntimeConfiguration_FWD_DEFINED__
  38. #ifdef __cplusplus
  39. typedef class JavaRuntimeConfiguration JavaRuntimeConfiguration;
  40. #else
  41. typedef struct JavaRuntimeConfiguration JavaRuntimeConfiguration;
  42. #endif /* __cplusplus */
  43. #endif /* __JavaRuntimeConfiguration_FWD_DEFINED__ */
  44. /* header files for imported files */
  45. #include "urlmon.h"
  46. #ifdef __cplusplus
  47. extern "C"{
  48. #endif
  49. void * __RPC_USER MIDL_user_allocate(size_t);
  50. void __RPC_USER MIDL_user_free( void * );
  51. /* interface __MIDL_itf_permdlg_0000 */
  52. /* [local] */
  53. EXTERN_C const CLSID CLSID_JavaRuntimeConfiguration;
  54. extern RPC_IF_HANDLE __MIDL_itf_permdlg_0000_v0_0_c_ifspec;
  55. extern RPC_IF_HANDLE __MIDL_itf_permdlg_0000_v0_0_s_ifspec;
  56. #ifndef __IJavaZonePermissionEditor_INTERFACE_DEFINED__
  57. #define __IJavaZonePermissionEditor_INTERFACE_DEFINED__
  58. /* interface IJavaZonePermissionEditor */
  59. /* [unique][uuid][object] */
  60. typedef
  61. enum _JAVADISPLAYMODES
  62. { JAVADISPLAY_DEFAULT = 0,
  63. JAVADISPLAY_FULL = 1,
  64. JAVAEDIT = 2
  65. } JAVADISPLAYMODES;
  66. EXTERN_C const IID IID_IJavaZonePermissionEditor;
  67. #if defined(__cplusplus) && !defined(CINTERFACE)
  68. MIDL_INTERFACE("85347F8A-C8B7-11d0-8823-00C04FB67C84")
  69. IJavaZonePermissionEditor : public IUnknown
  70. {
  71. public:
  72. virtual HRESULT STDMETHODCALLTYPE ShowUI(
  73. /* [in] */ HWND phwnd,
  74. /* [in] */ DWORD dwFlags,
  75. /* [in] */ DWORD dwMode,
  76. /* [in] */ URLZONEREG urlZoneReg,
  77. /* [in] */ DWORD dwZone,
  78. /* [in] */ DWORD dwPerms,
  79. /* [in] */ IUnknown *pManager) = 0;
  80. };
  81. #else /* C style interface */
  82. typedef struct IJavaZonePermissionEditorVtbl
  83. {
  84. BEGIN_INTERFACE
  85. HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
  86. IJavaZonePermissionEditor * This,
  87. /* [in] */ REFIID riid,
  88. /* [iid_is][out] */ void **ppvObject);
  89. ULONG ( STDMETHODCALLTYPE *AddRef )(
  90. IJavaZonePermissionEditor * This);
  91. ULONG ( STDMETHODCALLTYPE *Release )(
  92. IJavaZonePermissionEditor * This);
  93. HRESULT ( STDMETHODCALLTYPE *ShowUI )(
  94. IJavaZonePermissionEditor * This,
  95. /* [in] */ HWND phwnd,
  96. /* [in] */ DWORD dwFlags,
  97. /* [in] */ DWORD dwMode,
  98. /* [in] */ URLZONEREG urlZoneReg,
  99. /* [in] */ DWORD dwZone,
  100. /* [in] */ DWORD dwPerms,
  101. /* [in] */ IUnknown *pManager);
  102. END_INTERFACE
  103. } IJavaZonePermissionEditorVtbl;
  104. interface IJavaZonePermissionEditor
  105. {
  106. CONST_VTBL struct IJavaZonePermissionEditorVtbl *lpVtbl;
  107. };
  108. #ifdef COBJMACROS
  109. #define IJavaZonePermissionEditor_QueryInterface(This,riid,ppvObject) \
  110. (This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
  111. #define IJavaZonePermissionEditor_AddRef(This) \
  112. (This)->lpVtbl -> AddRef(This)
  113. #define IJavaZonePermissionEditor_Release(This) \
  114. (This)->lpVtbl -> Release(This)
  115. #define IJavaZonePermissionEditor_ShowUI(This,phwnd,dwFlags,dwMode,urlZoneReg,dwZone,dwPerms,pManager) \
  116. (This)->lpVtbl -> ShowUI(This,phwnd,dwFlags,dwMode,urlZoneReg,dwZone,dwPerms,pManager)
  117. #endif /* COBJMACROS */
  118. #endif /* C style interface */
  119. HRESULT STDMETHODCALLTYPE IJavaZonePermissionEditor_ShowUI_Proxy(
  120. IJavaZonePermissionEditor * This,
  121. /* [in] */ HWND phwnd,
  122. /* [in] */ DWORD dwFlags,
  123. /* [in] */ DWORD dwMode,
  124. /* [in] */ URLZONEREG urlZoneReg,
  125. /* [in] */ DWORD dwZone,
  126. /* [in] */ DWORD dwPerms,
  127. /* [in] */ IUnknown *pManager);
  128. void __RPC_STUB IJavaZonePermissionEditor_ShowUI_Stub(
  129. IRpcStubBuffer *This,
  130. IRpcChannelBuffer *_pRpcChannelBuffer,
  131. PRPC_MESSAGE _pRpcMessage,
  132. DWORD *_pdwStubPhase);
  133. #endif /* __IJavaZonePermissionEditor_INTERFACE_DEFINED__ */
  134. /* Additional Prototypes for ALL interfaces */
  135. unsigned long __RPC_USER HWND_UserSize( unsigned long *, unsigned long , HWND * );
  136. unsigned char * __RPC_USER HWND_UserMarshal( unsigned long *, unsigned char *, HWND * );
  137. unsigned char * __RPC_USER HWND_UserUnmarshal(unsigned long *, unsigned char *, HWND * );
  138. void __RPC_USER HWND_UserFree( unsigned long *, HWND * );
  139. /* end of Additional Prototypes */
  140. #ifdef __cplusplus
  141. }
  142. #endif
  143. #endif