summaryrefslogtreecommitdiff
path: root/Decompiler/mshtml/IHTMLSelectionObject.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Decompiler/mshtml/IHTMLSelectionObject.cs')
-rw-r--r--Decompiler/mshtml/IHTMLSelectionObject.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/Decompiler/mshtml/IHTMLSelectionObject.cs b/Decompiler/mshtml/IHTMLSelectionObject.cs
new file mode 100644
index 0000000..25c6073
--- /dev/null
+++ b/Decompiler/mshtml/IHTMLSelectionObject.cs
@@ -0,0 +1,16 @@
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+namespace mshtml;
+
+[ComImport]
+[CompilerGenerated]
+[Guid("3050F25A-98B5-11CF-BB82-00AA00BDCE0B")]
+[TypeIdentifier]
+public interface IHTMLSelectionObject
+{
+ [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
+ [DispId(1001)]
+ [return: MarshalAs(UnmanagedType.IDispatch)]
+ object createRange();
+}