├── .gitignore ├── CorePrio.sln ├── LICENSE.TXT ├── README.md ├── coreprio ├── CorePrio.aps ├── CorePrio.cpp ├── CorePrio.rc ├── CorePrio.vcxproj ├── CorePrio.vcxproj.filters ├── CorePrio.vcxproj.user ├── pch.cpp ├── pch.h ├── resource.h └── version.rc2 ├── corepriow ├── AffinitySelectionDialog.cpp ├── AffinitySelectionDialog.h ├── UpdateCheckThread.cpp ├── UpdateCheckThread.h ├── corepriow.bmp ├── corepriow.cpp ├── corepriow.h ├── corepriow.ico ├── corepriow.rc ├── corepriow.vcxproj ├── resource.h ├── small.ico ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── version.rc2 ├── cpriocsvc ├── CorePrioService.cpp ├── CorePrioService.h ├── ServiceBase.cpp ├── ServiceBase.h ├── ServiceInstaller.cpp ├── ServiceInstaller.h ├── ThreadPool.h ├── cpriocsvc.cpp ├── cpriocsvc.vcxproj ├── cpriosvc.rc ├── pch.cpp ├── pch.h ├── resource.h └── version.rc2 ├── installer ├── build.cmd ├── clean.cmd ├── coreprio.nsi ├── english │ ├── eula.txt │ └── installer_strings.txt ├── installer.vcxproj ├── myincludes.nsh └── rebuild.cmd ├── libcoreprio ├── DbgPrintf.cpp ├── DbgPrintf.h ├── LogOut.cpp ├── LogOut.h ├── ServiceManager.cpp ├── ServiceManager.h ├── TaskScheduler.cpp ├── TaskScheduler.h ├── ThreadManagement.cpp ├── ThreadManagement.h ├── libcoreprio.vcxproj ├── misc.cpp ├── misc.h ├── productoptions.cpp ├── productoptions.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── screenshots ├── coreprio_console.png ├── coreprio_reg.png ├── coreprio_ui.png └── up_screenshots.cmd ├── upload.cmd ├── version.h └── version.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/.gitignore -------------------------------------------------------------------------------- /CorePrio.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/CorePrio.sln -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/README.md -------------------------------------------------------------------------------- /coreprio/CorePrio.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/coreprio/CorePrio.aps -------------------------------------------------------------------------------- /coreprio/CorePrio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/coreprio/CorePrio.cpp -------------------------------------------------------------------------------- /coreprio/CorePrio.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/coreprio/CorePrio.rc -------------------------------------------------------------------------------- /coreprio/CorePrio.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/coreprio/CorePrio.vcxproj -------------------------------------------------------------------------------- /coreprio/CorePrio.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/coreprio/CorePrio.vcxproj.filters -------------------------------------------------------------------------------- /coreprio/CorePrio.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/coreprio/CorePrio.vcxproj.user -------------------------------------------------------------------------------- /coreprio/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/coreprio/pch.cpp -------------------------------------------------------------------------------- /coreprio/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/coreprio/pch.h -------------------------------------------------------------------------------- /coreprio/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/coreprio/resource.h -------------------------------------------------------------------------------- /coreprio/version.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/coreprio/version.rc2 -------------------------------------------------------------------------------- /corepriow/AffinitySelectionDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/corepriow/AffinitySelectionDialog.cpp -------------------------------------------------------------------------------- /corepriow/AffinitySelectionDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/corepriow/AffinitySelectionDialog.h -------------------------------------------------------------------------------- /corepriow/UpdateCheckThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/corepriow/UpdateCheckThread.cpp -------------------------------------------------------------------------------- /corepriow/UpdateCheckThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/corepriow/UpdateCheckThread.h -------------------------------------------------------------------------------- /corepriow/corepriow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/corepriow/corepriow.bmp -------------------------------------------------------------------------------- /corepriow/corepriow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/corepriow/corepriow.cpp -------------------------------------------------------------------------------- /corepriow/corepriow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/corepriow/corepriow.h -------------------------------------------------------------------------------- /corepriow/corepriow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/corepriow/corepriow.ico -------------------------------------------------------------------------------- /corepriow/corepriow.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/corepriow/corepriow.rc -------------------------------------------------------------------------------- /corepriow/corepriow.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/corepriow/corepriow.vcxproj -------------------------------------------------------------------------------- /corepriow/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/corepriow/resource.h -------------------------------------------------------------------------------- /corepriow/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/corepriow/small.ico -------------------------------------------------------------------------------- /corepriow/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /corepriow/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/corepriow/stdafx.h -------------------------------------------------------------------------------- /corepriow/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/corepriow/targetver.h -------------------------------------------------------------------------------- /corepriow/version.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/corepriow/version.rc2 -------------------------------------------------------------------------------- /cpriocsvc/CorePrioService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/cpriocsvc/CorePrioService.cpp -------------------------------------------------------------------------------- /cpriocsvc/CorePrioService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/cpriocsvc/CorePrioService.h -------------------------------------------------------------------------------- /cpriocsvc/ServiceBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/cpriocsvc/ServiceBase.cpp -------------------------------------------------------------------------------- /cpriocsvc/ServiceBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/cpriocsvc/ServiceBase.h -------------------------------------------------------------------------------- /cpriocsvc/ServiceInstaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/cpriocsvc/ServiceInstaller.cpp -------------------------------------------------------------------------------- /cpriocsvc/ServiceInstaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/cpriocsvc/ServiceInstaller.h -------------------------------------------------------------------------------- /cpriocsvc/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/cpriocsvc/ThreadPool.h -------------------------------------------------------------------------------- /cpriocsvc/cpriocsvc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/cpriocsvc/cpriocsvc.cpp -------------------------------------------------------------------------------- /cpriocsvc/cpriocsvc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/cpriocsvc/cpriocsvc.vcxproj -------------------------------------------------------------------------------- /cpriocsvc/cpriosvc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/cpriocsvc/cpriosvc.rc -------------------------------------------------------------------------------- /cpriocsvc/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/cpriocsvc/pch.cpp -------------------------------------------------------------------------------- /cpriocsvc/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/cpriocsvc/pch.h -------------------------------------------------------------------------------- /cpriocsvc/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/cpriocsvc/resource.h -------------------------------------------------------------------------------- /cpriocsvc/version.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/cpriocsvc/version.rc2 -------------------------------------------------------------------------------- /installer/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/installer/build.cmd -------------------------------------------------------------------------------- /installer/clean.cmd: -------------------------------------------------------------------------------- 1 | del ..\x64\release\corepriosetup.exe -------------------------------------------------------------------------------- /installer/coreprio.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/installer/coreprio.nsi -------------------------------------------------------------------------------- /installer/english/eula.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/installer/english/eula.txt -------------------------------------------------------------------------------- /installer/english/installer_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/installer/english/installer_strings.txt -------------------------------------------------------------------------------- /installer/installer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/installer/installer.vcxproj -------------------------------------------------------------------------------- /installer/myincludes.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/installer/myincludes.nsh -------------------------------------------------------------------------------- /installer/rebuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/installer/rebuild.cmd -------------------------------------------------------------------------------- /libcoreprio/DbgPrintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/libcoreprio/DbgPrintf.cpp -------------------------------------------------------------------------------- /libcoreprio/DbgPrintf.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void DbgPrintf(LPCTSTR fmt,...); 4 | -------------------------------------------------------------------------------- /libcoreprio/LogOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/libcoreprio/LogOut.cpp -------------------------------------------------------------------------------- /libcoreprio/LogOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/libcoreprio/LogOut.h -------------------------------------------------------------------------------- /libcoreprio/ServiceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/libcoreprio/ServiceManager.cpp -------------------------------------------------------------------------------- /libcoreprio/ServiceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/libcoreprio/ServiceManager.h -------------------------------------------------------------------------------- /libcoreprio/TaskScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/libcoreprio/TaskScheduler.cpp -------------------------------------------------------------------------------- /libcoreprio/TaskScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/libcoreprio/TaskScheduler.h -------------------------------------------------------------------------------- /libcoreprio/ThreadManagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/libcoreprio/ThreadManagement.cpp -------------------------------------------------------------------------------- /libcoreprio/ThreadManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/libcoreprio/ThreadManagement.h -------------------------------------------------------------------------------- /libcoreprio/libcoreprio.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/libcoreprio/libcoreprio.vcxproj -------------------------------------------------------------------------------- /libcoreprio/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/libcoreprio/misc.cpp -------------------------------------------------------------------------------- /libcoreprio/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/libcoreprio/misc.h -------------------------------------------------------------------------------- /libcoreprio/productoptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/libcoreprio/productoptions.cpp -------------------------------------------------------------------------------- /libcoreprio/productoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/libcoreprio/productoptions.h -------------------------------------------------------------------------------- /libcoreprio/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /libcoreprio/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/libcoreprio/stdafx.h -------------------------------------------------------------------------------- /libcoreprio/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/libcoreprio/targetver.h -------------------------------------------------------------------------------- /screenshots/coreprio_console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/screenshots/coreprio_console.png -------------------------------------------------------------------------------- /screenshots/coreprio_reg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/screenshots/coreprio_reg.png -------------------------------------------------------------------------------- /screenshots/coreprio_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/screenshots/coreprio_ui.png -------------------------------------------------------------------------------- /screenshots/up_screenshots.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/screenshots/up_screenshots.cmd -------------------------------------------------------------------------------- /upload.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/upload.cmd -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremycollake/coreprio/HEAD/version.h -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 0.0.6.8 --------------------------------------------------------------------------------