├── .gitignore ├── ArgsParse.cs ├── GodPotato.csproj ├── GodPotato.csproj.user ├── LICENSE ├── NativeAPI ├── GodPotatoContext.cs ├── GodPotatoUnmarshalTrigger.cs ├── IStreamImpl.cs ├── NativeMethods.cs ├── ObjRef.cs └── UnmarshalDCOM.cs ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── README.md ├── SharpToken.cs ├── app.config └── images ├── 1.png └── 2.png /.gitignore: -------------------------------------------------------------------------------- 1 | /.vs/ 2 | /bin/ 3 | /obj/ 4 | GodPotato.csproj.user 5 | app.config -------------------------------------------------------------------------------- /ArgsParse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeichenDream/GodPotato/HEAD/ArgsParse.cs -------------------------------------------------------------------------------- /GodPotato.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeichenDream/GodPotato/HEAD/GodPotato.csproj -------------------------------------------------------------------------------- /GodPotato.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeichenDream/GodPotato/HEAD/GodPotato.csproj.user -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeichenDream/GodPotato/HEAD/LICENSE -------------------------------------------------------------------------------- /NativeAPI/GodPotatoContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeichenDream/GodPotato/HEAD/NativeAPI/GodPotatoContext.cs -------------------------------------------------------------------------------- /NativeAPI/GodPotatoUnmarshalTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeichenDream/GodPotato/HEAD/NativeAPI/GodPotatoUnmarshalTrigger.cs -------------------------------------------------------------------------------- /NativeAPI/IStreamImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeichenDream/GodPotato/HEAD/NativeAPI/IStreamImpl.cs -------------------------------------------------------------------------------- /NativeAPI/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeichenDream/GodPotato/HEAD/NativeAPI/NativeMethods.cs -------------------------------------------------------------------------------- /NativeAPI/ObjRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeichenDream/GodPotato/HEAD/NativeAPI/ObjRef.cs -------------------------------------------------------------------------------- /NativeAPI/UnmarshalDCOM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeichenDream/GodPotato/HEAD/NativeAPI/UnmarshalDCOM.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeichenDream/GodPotato/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeichenDream/GodPotato/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeichenDream/GodPotato/HEAD/README.md -------------------------------------------------------------------------------- /SharpToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeichenDream/GodPotato/HEAD/SharpToken.cs -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeichenDream/GodPotato/HEAD/app.config -------------------------------------------------------------------------------- /images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeichenDream/GodPotato/HEAD/images/1.png -------------------------------------------------------------------------------- /images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeichenDream/GodPotato/HEAD/images/2.png --------------------------------------------------------------------------------