├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── ReservedCpuSets.sln ├── ReservedCpuSets ├── AboutForm │ ├── AboutForm.Designer.cs │ ├── AboutForm.cs │ └── AboutForm.resx ├── App.config ├── FodyWeavers.xml ├── MainForm │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ └── MainForm.resx ├── NativeMethods.cs ├── Options.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ReservedCpuSets.csproj ├── Utils.cs ├── app.manifest └── packages.config ├── ReservedCpuSetsDLL ├── ReservedCpuSetsDLL.cpp ├── ReservedCpuSetsDLL.vcxproj └── ReservedCpuSetsDLL.vcxproj.filters └── assets └── img ├── custom-bitmask.png └── program-screenshot.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/README.md -------------------------------------------------------------------------------- /ReservedCpuSets.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/ReservedCpuSets.sln -------------------------------------------------------------------------------- /ReservedCpuSets/AboutForm/AboutForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/ReservedCpuSets/AboutForm/AboutForm.Designer.cs -------------------------------------------------------------------------------- /ReservedCpuSets/AboutForm/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/ReservedCpuSets/AboutForm/AboutForm.cs -------------------------------------------------------------------------------- /ReservedCpuSets/AboutForm/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/ReservedCpuSets/AboutForm/AboutForm.resx -------------------------------------------------------------------------------- /ReservedCpuSets/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/ReservedCpuSets/App.config -------------------------------------------------------------------------------- /ReservedCpuSets/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/ReservedCpuSets/FodyWeavers.xml -------------------------------------------------------------------------------- /ReservedCpuSets/MainForm/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/ReservedCpuSets/MainForm/MainForm.Designer.cs -------------------------------------------------------------------------------- /ReservedCpuSets/MainForm/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/ReservedCpuSets/MainForm/MainForm.cs -------------------------------------------------------------------------------- /ReservedCpuSets/MainForm/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/ReservedCpuSets/MainForm/MainForm.resx -------------------------------------------------------------------------------- /ReservedCpuSets/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/ReservedCpuSets/NativeMethods.cs -------------------------------------------------------------------------------- /ReservedCpuSets/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/ReservedCpuSets/Options.cs -------------------------------------------------------------------------------- /ReservedCpuSets/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/ReservedCpuSets/Program.cs -------------------------------------------------------------------------------- /ReservedCpuSets/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/ReservedCpuSets/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ReservedCpuSets/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/ReservedCpuSets/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ReservedCpuSets/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/ReservedCpuSets/Properties/Resources.resx -------------------------------------------------------------------------------- /ReservedCpuSets/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/ReservedCpuSets/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ReservedCpuSets/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/ReservedCpuSets/Properties/Settings.settings -------------------------------------------------------------------------------- /ReservedCpuSets/ReservedCpuSets.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/ReservedCpuSets/ReservedCpuSets.csproj -------------------------------------------------------------------------------- /ReservedCpuSets/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/ReservedCpuSets/Utils.cs -------------------------------------------------------------------------------- /ReservedCpuSets/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/ReservedCpuSets/app.manifest -------------------------------------------------------------------------------- /ReservedCpuSets/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/ReservedCpuSets/packages.config -------------------------------------------------------------------------------- /ReservedCpuSetsDLL/ReservedCpuSetsDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/ReservedCpuSetsDLL/ReservedCpuSetsDLL.cpp -------------------------------------------------------------------------------- /ReservedCpuSetsDLL/ReservedCpuSetsDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/ReservedCpuSetsDLL/ReservedCpuSetsDLL.vcxproj -------------------------------------------------------------------------------- /ReservedCpuSetsDLL/ReservedCpuSetsDLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/ReservedCpuSetsDLL/ReservedCpuSetsDLL.vcxproj.filters -------------------------------------------------------------------------------- /assets/img/custom-bitmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/assets/img/custom-bitmask.png -------------------------------------------------------------------------------- /assets/img/program-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/ReservedCpuSets/HEAD/assets/img/program-screenshot.png --------------------------------------------------------------------------------