feat: 初始化 fl-knowledge 仓库 - 防雷项目源码

This commit is contained in:
chengkai3
2026-06-06 08:03:01 +08:00
commit 3726b404c4
99 changed files with 44754 additions and 0 deletions
+128
View File
@@ -0,0 +1,128 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
namespace Microsoft.Office.Interop.Word;
[ComImport]
[CompilerGenerated]
[Guid("0002095E-0000-0000-C000-000000000046")]
[DefaultMember("Text")]
[TypeIdentifier]
public interface Range
{
[DispId(0)]
string Text
{
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(0)]
[return: MarshalAs(UnmanagedType.BStr)]
get;
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(0)]
[param: In]
[param: MarshalAs(UnmanagedType.BStr)]
set;
}
void _VtblGap1_6();
[DispId(5)]
Font Font
{
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(5)]
[return: MarshalAs(UnmanagedType.Interface)]
get;
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(5)]
[param: In]
[param: MarshalAs(UnmanagedType.Interface)]
set;
}
void _VtblGap2_2();
[DispId(50)]
Tables Tables
{
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(50)]
[return: MarshalAs(UnmanagedType.Interface)]
get;
}
void _VtblGap3_6();
[DispId(57)]
Cells Cells
{
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(57)]
[return: MarshalAs(UnmanagedType.Interface)]
get;
}
void _VtblGap4_1();
[DispId(59)]
Paragraphs Paragraphs
{
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(59)]
[return: MarshalAs(UnmanagedType.Interface)]
get;
}
void _VtblGap5_8();
[DispId(1102)]
ParagraphFormat ParagraphFormat
{
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(1102)]
[return: MarshalAs(UnmanagedType.Interface)]
get;
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(1102)]
[param: In]
[param: MarshalAs(UnmanagedType.Interface)]
set;
}
void _VtblGap6_17();
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[SpecialName]
[DispId(151)]
void set_Style([In][MarshalAs(UnmanagedType.Struct)] ref object prop);
void _VtblGap7_14();
[DispId(303)]
Rows Rows
{
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(303)]
[return: MarshalAs(UnmanagedType.Interface)]
get;
}
void _VtblGap8_23();
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(65535)]
void Select();
void _VtblGap9_20();
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(122)]
void InsertBreak([Optional][In][MarshalAs(UnmanagedType.Struct)] ref object Type);
void _VtblGap10_7();
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
[DispId(161)]
void InsertParagraphAfter();
}