├── .gitattributes ├── .gitignore ├── APISetMap ├── APISetMap.cpp ├── APISetMap.sln ├── APISetMap.vcxproj ├── APISetMap.vcxproj.filters ├── ApiSet.h ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── CPUSTRES ├── AffinityDlg.cpp ├── AffinityDlg.h ├── CPUSTRES.rc ├── CPUSTRES.sln ├── CPUStressEx.cpp ├── CPUStressEx.h ├── CPUStressEx.rc ├── CPUStressEx.vcxproj ├── CPUStressEx.vcxproj.filters ├── ChildView.cpp ├── ChildView.h ├── CpuStres.ini ├── Globals.cpp ├── Globals.h ├── Icons │ ├── gear_add.ico │ ├── gear_delete.ico │ ├── gear_pause.ico │ └── gear_run.ico ├── MainDialogBar.cpp ├── MainDialogBar.h ├── MainFrm.cpp ├── MainFrm.h ├── RCa25180 ├── README.md ├── SystemCPUSetDlg.cpp ├── SystemCPUSetDlg.h ├── SystemCpuSet.cpp ├── SystemCpuSet.h ├── Thread.cpp ├── Thread.h ├── ThreadsListCtrl.cpp ├── ThreadsListCtrl.h ├── publish_config.json ├── res │ ├── CPUStressEx.ico │ └── CPUStressEx.rc2 ├── resource.h ├── resource1.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── CPlist ├── CPlist.cpp ├── CPlist.vcxproj ├── CPlist.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── CpuLimit ├── CpuLimit.cpp ├── CpuLimit.vcxproj ├── CpuLimit.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── CpuSet ├── CpuSet.cpp ├── CpuSet.vcxproj ├── CpuSet.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── IoPriority ├── IoPriority.cpp ├── IoPriority.h ├── IoPriority.rc ├── IoPriority.sln ├── IoPriority.vcxproj ├── IoPriority.vcxproj.filters ├── IoPriorityDlg.cpp ├── IoPriorityDlg.h ├── ReadMe.txt ├── res │ ├── IoPriority.ico │ └── IoPriority.rc2 ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── LICENSE ├── MemCombine ├── MemCombine.cpp ├── MemCombine.sln ├── MemCombine.vcxproj ├── MemCombine.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── MemCombineTest ├── MemCombineTest.cpp ├── MemCombineTest.sln ├── MemCombineTest.vcxproj ├── MemCombineTest.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── MemInfo ├── MemInfo.cpp ├── MemInfo.h ├── MemInfo.vcxproj ├── MemInfo.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── MemLimit ├── MemLimit.cpp ├── MemLimit.vcxproj ├── MemLimit.vcxproj.filters ├── ndk │ ├── arch │ │ ├── ketypes.h │ │ └── mmtypes.h │ ├── asm.h │ ├── cctypes.h │ ├── cmfuncs.h │ ├── cmtypes.h │ ├── dbgkfuncs.h │ ├── dbgktypes.h │ ├── exfuncs.h │ ├── extypes.h │ ├── halfuncs.h │ ├── haltypes.h │ ├── i386 │ │ ├── ketypes.h │ │ └── mmtypes.h │ ├── ifssupp.h │ ├── inbvfuncs.h │ ├── inbvtypes.h │ ├── iofuncs.h │ ├── iotypes.h │ ├── kdfuncs.h │ ├── kdtypes.h │ ├── kefuncs.h │ ├── ketypes.h │ ├── ldrfuncs.h │ ├── ldrtypes.h │ ├── lpcfuncs.h │ ├── lpctypes.h │ ├── mmfuncs.h │ ├── mmtypes.h │ ├── ntndk.h │ ├── obfuncs.h │ ├── obtypes.h │ ├── pofuncs.h │ ├── potypes.h │ ├── powerpc │ │ ├── ketypes.h │ │ └── mmtypes.h │ ├── psfuncs.h │ ├── pstypes.h │ ├── rtlfuncs.h │ ├── rtltypes.h │ ├── sefuncs.h │ ├── setypes.h │ ├── umfuncs.h │ └── umtypes.h ├── ntndk.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── README.md ├── SlPolicy ├── ReadMe.txt ├── SlPolicy.cpp ├── SlPolicy.vcxproj ├── SlPolicy.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── Tools.sln └── UwpList ├── ReadMe.txt ├── UwpList.cpp ├── UwpList.rc ├── UwpList.vcxproj ├── UwpList.vcxproj.filters ├── caps.txt ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/.gitignore -------------------------------------------------------------------------------- /APISetMap/APISetMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/APISetMap/APISetMap.cpp -------------------------------------------------------------------------------- /APISetMap/APISetMap.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/APISetMap/APISetMap.sln -------------------------------------------------------------------------------- /APISetMap/APISetMap.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/APISetMap/APISetMap.vcxproj -------------------------------------------------------------------------------- /APISetMap/APISetMap.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/APISetMap/APISetMap.vcxproj.filters -------------------------------------------------------------------------------- /APISetMap/ApiSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/APISetMap/ApiSet.h -------------------------------------------------------------------------------- /APISetMap/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/APISetMap/ReadMe.txt -------------------------------------------------------------------------------- /APISetMap/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/APISetMap/stdafx.cpp -------------------------------------------------------------------------------- /APISetMap/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/APISetMap/stdafx.h -------------------------------------------------------------------------------- /APISetMap/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/APISetMap/targetver.h -------------------------------------------------------------------------------- /CPUSTRES/AffinityDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/AffinityDlg.cpp -------------------------------------------------------------------------------- /CPUSTRES/AffinityDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/AffinityDlg.h -------------------------------------------------------------------------------- /CPUSTRES/CPUSTRES.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/CPUSTRES.rc -------------------------------------------------------------------------------- /CPUSTRES/CPUSTRES.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/CPUSTRES.sln -------------------------------------------------------------------------------- /CPUSTRES/CPUStressEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/CPUStressEx.cpp -------------------------------------------------------------------------------- /CPUSTRES/CPUStressEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/CPUStressEx.h -------------------------------------------------------------------------------- /CPUSTRES/CPUStressEx.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/CPUStressEx.rc -------------------------------------------------------------------------------- /CPUSTRES/CPUStressEx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/CPUStressEx.vcxproj -------------------------------------------------------------------------------- /CPUSTRES/CPUStressEx.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/CPUStressEx.vcxproj.filters -------------------------------------------------------------------------------- /CPUSTRES/ChildView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/ChildView.cpp -------------------------------------------------------------------------------- /CPUSTRES/ChildView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/ChildView.h -------------------------------------------------------------------------------- /CPUSTRES/CpuStres.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/CpuStres.ini -------------------------------------------------------------------------------- /CPUSTRES/Globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/Globals.cpp -------------------------------------------------------------------------------- /CPUSTRES/Globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/Globals.h -------------------------------------------------------------------------------- /CPUSTRES/Icons/gear_add.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/Icons/gear_add.ico -------------------------------------------------------------------------------- /CPUSTRES/Icons/gear_delete.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/Icons/gear_delete.ico -------------------------------------------------------------------------------- /CPUSTRES/Icons/gear_pause.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/Icons/gear_pause.ico -------------------------------------------------------------------------------- /CPUSTRES/Icons/gear_run.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/Icons/gear_run.ico -------------------------------------------------------------------------------- /CPUSTRES/MainDialogBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/MainDialogBar.cpp -------------------------------------------------------------------------------- /CPUSTRES/MainDialogBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/MainDialogBar.h -------------------------------------------------------------------------------- /CPUSTRES/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/MainFrm.cpp -------------------------------------------------------------------------------- /CPUSTRES/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/MainFrm.h -------------------------------------------------------------------------------- /CPUSTRES/RCa25180: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/RCa25180 -------------------------------------------------------------------------------- /CPUSTRES/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/README.md -------------------------------------------------------------------------------- /CPUSTRES/SystemCPUSetDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/SystemCPUSetDlg.cpp -------------------------------------------------------------------------------- /CPUSTRES/SystemCPUSetDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/SystemCPUSetDlg.h -------------------------------------------------------------------------------- /CPUSTRES/SystemCpuSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/SystemCpuSet.cpp -------------------------------------------------------------------------------- /CPUSTRES/SystemCpuSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/SystemCpuSet.h -------------------------------------------------------------------------------- /CPUSTRES/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/Thread.cpp -------------------------------------------------------------------------------- /CPUSTRES/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/Thread.h -------------------------------------------------------------------------------- /CPUSTRES/ThreadsListCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/ThreadsListCtrl.cpp -------------------------------------------------------------------------------- /CPUSTRES/ThreadsListCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/ThreadsListCtrl.h -------------------------------------------------------------------------------- /CPUSTRES/publish_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/publish_config.json -------------------------------------------------------------------------------- /CPUSTRES/res/CPUStressEx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/res/CPUStressEx.ico -------------------------------------------------------------------------------- /CPUSTRES/res/CPUStressEx.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/res/CPUStressEx.rc2 -------------------------------------------------------------------------------- /CPUSTRES/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/resource.h -------------------------------------------------------------------------------- /CPUSTRES/resource1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/resource1.h -------------------------------------------------------------------------------- /CPUSTRES/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/stdafx.cpp -------------------------------------------------------------------------------- /CPUSTRES/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/stdafx.h -------------------------------------------------------------------------------- /CPUSTRES/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPUSTRES/targetver.h -------------------------------------------------------------------------------- /CPlist/CPlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPlist/CPlist.cpp -------------------------------------------------------------------------------- /CPlist/CPlist.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPlist/CPlist.vcxproj -------------------------------------------------------------------------------- /CPlist/CPlist.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPlist/CPlist.vcxproj.filters -------------------------------------------------------------------------------- /CPlist/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPlist/ReadMe.txt -------------------------------------------------------------------------------- /CPlist/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPlist/stdafx.cpp -------------------------------------------------------------------------------- /CPlist/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPlist/stdafx.h -------------------------------------------------------------------------------- /CPlist/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CPlist/targetver.h -------------------------------------------------------------------------------- /CpuLimit/CpuLimit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CpuLimit/CpuLimit.cpp -------------------------------------------------------------------------------- /CpuLimit/CpuLimit.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CpuLimit/CpuLimit.vcxproj -------------------------------------------------------------------------------- /CpuLimit/CpuLimit.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CpuLimit/CpuLimit.vcxproj.filters -------------------------------------------------------------------------------- /CpuLimit/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CpuLimit/stdafx.cpp -------------------------------------------------------------------------------- /CpuLimit/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CpuLimit/stdafx.h -------------------------------------------------------------------------------- /CpuLimit/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CpuLimit/targetver.h -------------------------------------------------------------------------------- /CpuSet/CpuSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CpuSet/CpuSet.cpp -------------------------------------------------------------------------------- /CpuSet/CpuSet.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CpuSet/CpuSet.vcxproj -------------------------------------------------------------------------------- /CpuSet/CpuSet.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CpuSet/CpuSet.vcxproj.filters -------------------------------------------------------------------------------- /CpuSet/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CpuSet/ReadMe.txt -------------------------------------------------------------------------------- /CpuSet/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CpuSet/stdafx.cpp -------------------------------------------------------------------------------- /CpuSet/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CpuSet/stdafx.h -------------------------------------------------------------------------------- /CpuSet/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/CpuSet/targetver.h -------------------------------------------------------------------------------- /IoPriority/IoPriority.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/IoPriority/IoPriority.cpp -------------------------------------------------------------------------------- /IoPriority/IoPriority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/IoPriority/IoPriority.h -------------------------------------------------------------------------------- /IoPriority/IoPriority.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/IoPriority/IoPriority.rc -------------------------------------------------------------------------------- /IoPriority/IoPriority.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/IoPriority/IoPriority.sln -------------------------------------------------------------------------------- /IoPriority/IoPriority.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/IoPriority/IoPriority.vcxproj -------------------------------------------------------------------------------- /IoPriority/IoPriority.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/IoPriority/IoPriority.vcxproj.filters -------------------------------------------------------------------------------- /IoPriority/IoPriorityDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/IoPriority/IoPriorityDlg.cpp -------------------------------------------------------------------------------- /IoPriority/IoPriorityDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/IoPriority/IoPriorityDlg.h -------------------------------------------------------------------------------- /IoPriority/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/IoPriority/ReadMe.txt -------------------------------------------------------------------------------- /IoPriority/res/IoPriority.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/IoPriority/res/IoPriority.ico -------------------------------------------------------------------------------- /IoPriority/res/IoPriority.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/IoPriority/res/IoPriority.rc2 -------------------------------------------------------------------------------- /IoPriority/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/IoPriority/resource.h -------------------------------------------------------------------------------- /IoPriority/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/IoPriority/stdafx.cpp -------------------------------------------------------------------------------- /IoPriority/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/IoPriority/stdafx.h -------------------------------------------------------------------------------- /IoPriority/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/IoPriority/targetver.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/LICENSE -------------------------------------------------------------------------------- /MemCombine/MemCombine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemCombine/MemCombine.cpp -------------------------------------------------------------------------------- /MemCombine/MemCombine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemCombine/MemCombine.sln -------------------------------------------------------------------------------- /MemCombine/MemCombine.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemCombine/MemCombine.vcxproj -------------------------------------------------------------------------------- /MemCombine/MemCombine.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemCombine/MemCombine.vcxproj.filters -------------------------------------------------------------------------------- /MemCombine/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemCombine/ReadMe.txt -------------------------------------------------------------------------------- /MemCombine/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemCombine/stdafx.cpp -------------------------------------------------------------------------------- /MemCombine/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemCombine/stdafx.h -------------------------------------------------------------------------------- /MemCombine/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemCombine/targetver.h -------------------------------------------------------------------------------- /MemCombineTest/MemCombineTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemCombineTest/MemCombineTest.cpp -------------------------------------------------------------------------------- /MemCombineTest/MemCombineTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemCombineTest/MemCombineTest.sln -------------------------------------------------------------------------------- /MemCombineTest/MemCombineTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemCombineTest/MemCombineTest.vcxproj -------------------------------------------------------------------------------- /MemCombineTest/MemCombineTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemCombineTest/MemCombineTest.vcxproj.filters -------------------------------------------------------------------------------- /MemCombineTest/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemCombineTest/ReadMe.txt -------------------------------------------------------------------------------- /MemCombineTest/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemCombineTest/stdafx.cpp -------------------------------------------------------------------------------- /MemCombineTest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemCombineTest/stdafx.h -------------------------------------------------------------------------------- /MemCombineTest/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemCombineTest/targetver.h -------------------------------------------------------------------------------- /MemInfo/MemInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemInfo/MemInfo.cpp -------------------------------------------------------------------------------- /MemInfo/MemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemInfo/MemInfo.h -------------------------------------------------------------------------------- /MemInfo/MemInfo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemInfo/MemInfo.vcxproj -------------------------------------------------------------------------------- /MemInfo/MemInfo.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemInfo/MemInfo.vcxproj.filters -------------------------------------------------------------------------------- /MemInfo/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemInfo/ReadMe.txt -------------------------------------------------------------------------------- /MemInfo/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemInfo/stdafx.cpp -------------------------------------------------------------------------------- /MemInfo/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemInfo/stdafx.h -------------------------------------------------------------------------------- /MemInfo/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemInfo/targetver.h -------------------------------------------------------------------------------- /MemLimit/MemLimit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/MemLimit.cpp -------------------------------------------------------------------------------- /MemLimit/MemLimit.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/MemLimit.vcxproj -------------------------------------------------------------------------------- /MemLimit/MemLimit.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/MemLimit.vcxproj.filters -------------------------------------------------------------------------------- /MemLimit/ndk/arch/ketypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/arch/ketypes.h -------------------------------------------------------------------------------- /MemLimit/ndk/arch/mmtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/arch/mmtypes.h -------------------------------------------------------------------------------- /MemLimit/ndk/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/asm.h -------------------------------------------------------------------------------- /MemLimit/ndk/cctypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/cctypes.h -------------------------------------------------------------------------------- /MemLimit/ndk/cmfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/cmfuncs.h -------------------------------------------------------------------------------- /MemLimit/ndk/cmtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/cmtypes.h -------------------------------------------------------------------------------- /MemLimit/ndk/dbgkfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/dbgkfuncs.h -------------------------------------------------------------------------------- /MemLimit/ndk/dbgktypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/dbgktypes.h -------------------------------------------------------------------------------- /MemLimit/ndk/exfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/exfuncs.h -------------------------------------------------------------------------------- /MemLimit/ndk/extypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/extypes.h -------------------------------------------------------------------------------- /MemLimit/ndk/halfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/halfuncs.h -------------------------------------------------------------------------------- /MemLimit/ndk/haltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/haltypes.h -------------------------------------------------------------------------------- /MemLimit/ndk/i386/ketypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/i386/ketypes.h -------------------------------------------------------------------------------- /MemLimit/ndk/i386/mmtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/i386/mmtypes.h -------------------------------------------------------------------------------- /MemLimit/ndk/ifssupp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/ifssupp.h -------------------------------------------------------------------------------- /MemLimit/ndk/inbvfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/inbvfuncs.h -------------------------------------------------------------------------------- /MemLimit/ndk/inbvtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/inbvtypes.h -------------------------------------------------------------------------------- /MemLimit/ndk/iofuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/iofuncs.h -------------------------------------------------------------------------------- /MemLimit/ndk/iotypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/iotypes.h -------------------------------------------------------------------------------- /MemLimit/ndk/kdfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/kdfuncs.h -------------------------------------------------------------------------------- /MemLimit/ndk/kdtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/kdtypes.h -------------------------------------------------------------------------------- /MemLimit/ndk/kefuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/kefuncs.h -------------------------------------------------------------------------------- /MemLimit/ndk/ketypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/ketypes.h -------------------------------------------------------------------------------- /MemLimit/ndk/ldrfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/ldrfuncs.h -------------------------------------------------------------------------------- /MemLimit/ndk/ldrtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/ldrtypes.h -------------------------------------------------------------------------------- /MemLimit/ndk/lpcfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/lpcfuncs.h -------------------------------------------------------------------------------- /MemLimit/ndk/lpctypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/lpctypes.h -------------------------------------------------------------------------------- /MemLimit/ndk/mmfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/mmfuncs.h -------------------------------------------------------------------------------- /MemLimit/ndk/mmtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/mmtypes.h -------------------------------------------------------------------------------- /MemLimit/ndk/ntndk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/ntndk.h -------------------------------------------------------------------------------- /MemLimit/ndk/obfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/obfuncs.h -------------------------------------------------------------------------------- /MemLimit/ndk/obtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/obtypes.h -------------------------------------------------------------------------------- /MemLimit/ndk/pofuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/pofuncs.h -------------------------------------------------------------------------------- /MemLimit/ndk/potypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/potypes.h -------------------------------------------------------------------------------- /MemLimit/ndk/powerpc/ketypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/powerpc/ketypes.h -------------------------------------------------------------------------------- /MemLimit/ndk/powerpc/mmtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/powerpc/mmtypes.h -------------------------------------------------------------------------------- /MemLimit/ndk/psfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/psfuncs.h -------------------------------------------------------------------------------- /MemLimit/ndk/pstypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/pstypes.h -------------------------------------------------------------------------------- /MemLimit/ndk/rtlfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/rtlfuncs.h -------------------------------------------------------------------------------- /MemLimit/ndk/rtltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/rtltypes.h -------------------------------------------------------------------------------- /MemLimit/ndk/sefuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/sefuncs.h -------------------------------------------------------------------------------- /MemLimit/ndk/setypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/setypes.h -------------------------------------------------------------------------------- /MemLimit/ndk/umfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/umfuncs.h -------------------------------------------------------------------------------- /MemLimit/ndk/umtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ndk/umtypes.h -------------------------------------------------------------------------------- /MemLimit/ntndk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/ntndk.h -------------------------------------------------------------------------------- /MemLimit/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/stdafx.cpp -------------------------------------------------------------------------------- /MemLimit/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/stdafx.h -------------------------------------------------------------------------------- /MemLimit/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/MemLimit/targetver.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/README.md -------------------------------------------------------------------------------- /SlPolicy/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/SlPolicy/ReadMe.txt -------------------------------------------------------------------------------- /SlPolicy/SlPolicy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/SlPolicy/SlPolicy.cpp -------------------------------------------------------------------------------- /SlPolicy/SlPolicy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/SlPolicy/SlPolicy.vcxproj -------------------------------------------------------------------------------- /SlPolicy/SlPolicy.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/SlPolicy/SlPolicy.vcxproj.filters -------------------------------------------------------------------------------- /SlPolicy/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/SlPolicy/stdafx.cpp -------------------------------------------------------------------------------- /SlPolicy/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/SlPolicy/stdafx.h -------------------------------------------------------------------------------- /SlPolicy/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/SlPolicy/targetver.h -------------------------------------------------------------------------------- /Tools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/Tools.sln -------------------------------------------------------------------------------- /UwpList/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/UwpList/ReadMe.txt -------------------------------------------------------------------------------- /UwpList/UwpList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/UwpList/UwpList.cpp -------------------------------------------------------------------------------- /UwpList/UwpList.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/UwpList/UwpList.rc -------------------------------------------------------------------------------- /UwpList/UwpList.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/UwpList/UwpList.vcxproj -------------------------------------------------------------------------------- /UwpList/UwpList.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/UwpList/UwpList.vcxproj.filters -------------------------------------------------------------------------------- /UwpList/caps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/UwpList/caps.txt -------------------------------------------------------------------------------- /UwpList/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/UwpList/resource.h -------------------------------------------------------------------------------- /UwpList/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/UwpList/stdafx.cpp -------------------------------------------------------------------------------- /UwpList/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/UwpList/stdafx.h -------------------------------------------------------------------------------- /UwpList/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodiacon/WindowsInternals/HEAD/UwpList/targetver.h --------------------------------------------------------------------------------