├── .github └── ISSUE_TEMPLATE │ ├── bug.yml │ └── config.yml ├── .gitignore ├── Extra └── FeatureDictionary.pfs ├── LICENSE ├── README.md ├── ViVe.sln ├── ViVe ├── FeatureManager.cs ├── FeaturePropertyOverflowException.cs ├── NativeEnums.cs ├── NativeMethods.Ntdll.cs ├── NativeStructs.cs ├── ObfuscationHelpers.cs ├── Properties │ └── AssemblyInfo.cs └── ViVe.csproj └── ViVeTool ├── App.config ├── ArgumentBlock.cs ├── ConsoleEx.cs ├── FeatureNaming.cs ├── NativeMethods.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── UpdateCheck.cs ├── ViVeTool.csproj ├── app.manifest └── packages.config /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/.gitignore -------------------------------------------------------------------------------- /Extra/FeatureDictionary.pfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/Extra/FeatureDictionary.pfs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/README.md -------------------------------------------------------------------------------- /ViVe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/ViVe.sln -------------------------------------------------------------------------------- /ViVe/FeatureManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/ViVe/FeatureManager.cs -------------------------------------------------------------------------------- /ViVe/FeaturePropertyOverflowException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/ViVe/FeaturePropertyOverflowException.cs -------------------------------------------------------------------------------- /ViVe/NativeEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/ViVe/NativeEnums.cs -------------------------------------------------------------------------------- /ViVe/NativeMethods.Ntdll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/ViVe/NativeMethods.Ntdll.cs -------------------------------------------------------------------------------- /ViVe/NativeStructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/ViVe/NativeStructs.cs -------------------------------------------------------------------------------- /ViVe/ObfuscationHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/ViVe/ObfuscationHelpers.cs -------------------------------------------------------------------------------- /ViVe/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/ViVe/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ViVe/ViVe.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/ViVe/ViVe.csproj -------------------------------------------------------------------------------- /ViVeTool/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/ViVeTool/App.config -------------------------------------------------------------------------------- /ViVeTool/ArgumentBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/ViVeTool/ArgumentBlock.cs -------------------------------------------------------------------------------- /ViVeTool/ConsoleEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/ViVeTool/ConsoleEx.cs -------------------------------------------------------------------------------- /ViVeTool/FeatureNaming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/ViVeTool/FeatureNaming.cs -------------------------------------------------------------------------------- /ViVeTool/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/ViVeTool/NativeMethods.cs -------------------------------------------------------------------------------- /ViVeTool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/ViVeTool/Program.cs -------------------------------------------------------------------------------- /ViVeTool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/ViVeTool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ViVeTool/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/ViVeTool/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ViVeTool/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/ViVeTool/Properties/Resources.resx -------------------------------------------------------------------------------- /ViVeTool/UpdateCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/ViVeTool/UpdateCheck.cs -------------------------------------------------------------------------------- /ViVeTool/ViVeTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/ViVeTool/ViVeTool.csproj -------------------------------------------------------------------------------- /ViVeTool/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/ViVeTool/app.manifest -------------------------------------------------------------------------------- /ViVeTool/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ViVe/HEAD/ViVeTool/packages.config --------------------------------------------------------------------------------