├── .gitattributes ├── .gitignore ├── Com ├── IEnumSTATSTG.cs ├── ILockBytes.cs ├── IMarshal.cs ├── IStorage.cs ├── IStream.cs └── Ole32.cs ├── LICENSE ├── LocalNegotiator.cs ├── ObjRef.cs ├── Options.cs ├── PotatoAPI.cs ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── README.md ├── Security ├── Privilege.cs └── SSPIHelper.cs ├── StorageTrigger.cs ├── SweetPotato.cna ├── SweetPotato.csproj ├── SweetPotato.sln ├── app.config └── app.manifest /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tycx2ry/SweetPotato_CS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tycx2ry/SweetPotato_CS/HEAD/.gitignore -------------------------------------------------------------------------------- /Com/IEnumSTATSTG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tycx2ry/SweetPotato_CS/HEAD/Com/IEnumSTATSTG.cs -------------------------------------------------------------------------------- /Com/ILockBytes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tycx2ry/SweetPotato_CS/HEAD/Com/ILockBytes.cs -------------------------------------------------------------------------------- /Com/IMarshal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tycx2ry/SweetPotato_CS/HEAD/Com/IMarshal.cs -------------------------------------------------------------------------------- /Com/IStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tycx2ry/SweetPotato_CS/HEAD/Com/IStorage.cs -------------------------------------------------------------------------------- /Com/IStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tycx2ry/SweetPotato_CS/HEAD/Com/IStream.cs -------------------------------------------------------------------------------- /Com/Ole32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tycx2ry/SweetPotato_CS/HEAD/Com/Ole32.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tycx2ry/SweetPotato_CS/HEAD/LICENSE -------------------------------------------------------------------------------- /LocalNegotiator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tycx2ry/SweetPotato_CS/HEAD/LocalNegotiator.cs -------------------------------------------------------------------------------- /ObjRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tycx2ry/SweetPotato_CS/HEAD/ObjRef.cs -------------------------------------------------------------------------------- /Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tycx2ry/SweetPotato_CS/HEAD/Options.cs -------------------------------------------------------------------------------- /PotatoAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tycx2ry/SweetPotato_CS/HEAD/PotatoAPI.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tycx2ry/SweetPotato_CS/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tycx2ry/SweetPotato_CS/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tycx2ry/SweetPotato_CS/HEAD/README.md -------------------------------------------------------------------------------- /Security/Privilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tycx2ry/SweetPotato_CS/HEAD/Security/Privilege.cs -------------------------------------------------------------------------------- /Security/SSPIHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tycx2ry/SweetPotato_CS/HEAD/Security/SSPIHelper.cs -------------------------------------------------------------------------------- /StorageTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tycx2ry/SweetPotato_CS/HEAD/StorageTrigger.cs -------------------------------------------------------------------------------- /SweetPotato.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tycx2ry/SweetPotato_CS/HEAD/SweetPotato.cna -------------------------------------------------------------------------------- /SweetPotato.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tycx2ry/SweetPotato_CS/HEAD/SweetPotato.csproj -------------------------------------------------------------------------------- /SweetPotato.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tycx2ry/SweetPotato_CS/HEAD/SweetPotato.sln -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tycx2ry/SweetPotato_CS/HEAD/app.config -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tycx2ry/SweetPotato_CS/HEAD/app.manifest --------------------------------------------------------------------------------