From 225aa1499e37faf9d38257caabbadc68d78b427e Mon Sep 17 00:00:00 2001 From: Lucas Faria Mendes Date: Mon, 30 Mar 2026 12:29:41 -0300 Subject: decompiler.com --- Decompiler/mshtml/DispHTMLDocument.cs | 85 +++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 Decompiler/mshtml/DispHTMLDocument.cs (limited to 'Decompiler/mshtml/DispHTMLDocument.cs') diff --git a/Decompiler/mshtml/DispHTMLDocument.cs b/Decompiler/mshtml/DispHTMLDocument.cs new file mode 100644 index 0000000..c839c26 --- /dev/null +++ b/Decompiler/mshtml/DispHTMLDocument.cs @@ -0,0 +1,85 @@ +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +namespace mshtml; + +[ComImport] +[CompilerGenerated] +[InterfaceType(2)] +[Guid("3050F55F-98B5-11CF-BB82-00AA00BDCE0B")] +[TypeIdentifier] +public interface DispHTMLDocument +{ + void _VtblGap1_2(); + + [DispId(1004)] + IHTMLElement body + { + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1004)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + } + + void _VtblGap2_9(); + + [DispId(1014)] + string designMode + { + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1014)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1014)] + [param: MarshalAs(UnmanagedType.BStr)] + set; + } + + [DispId(1017)] + IHTMLSelectionObject selection + { + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1017)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + } + + void _VtblGap3_25(); + + [DispId(1032)] + string charset + { + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1032)] + [return: MarshalAs(UnmanagedType.BStr)] + get; + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1032)] + [param: MarshalAs(UnmanagedType.BStr)] + set; + } + + void _VtblGap4_14(); + + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1058)] + void clear(); + + void _VtblGap5_6(); + + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1065)] + bool execCommand([In][MarshalAs(UnmanagedType.BStr)] string cmdID, [In] bool showUI = false, [Optional][In][MarshalAs(UnmanagedType.Struct)] object value); + + void _VtblGap6_48(); + + [DispId(1075)] + IHTMLElement documentElement + { + [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)] + [DispId(1075)] + [return: MarshalAs(UnmanagedType.Interface)] + get; + } +} -- cgit v1.2.3