├── .gitattributes ├── .gitignore ├── .vs ├── Supercharger │ ├── hr_test │ │ ├── codemap.dat │ │ ├── global_history.dat │ │ └── workbench.dat │ └── sysdiag │ │ ├── codemap.dat │ │ ├── global_history.dat │ │ └── workbench.dat └── re_sysdiag │ └── v14 │ └── .suo ├── LICENSE ├── README.md ├── bin └── sysdiag.sys ├── hr_test ├── ReadMe.txt ├── hr_test.cpp ├── hr_test.vcxproj ├── hr_test.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── re_sysdiag.sln └── sysdiag ├── global.h ├── import_src ├── gdata.c ├── gdata.h ├── gtype.h ├── hr_sys.c └── hr_sys.h ├── sysdiag.c ├── sysdiag.inf ├── sysdiag.vcxproj └── sysdiag.vcxproj.filters /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/Supercharger/hr_test/codemap.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/.vs/Supercharger/hr_test/codemap.dat -------------------------------------------------------------------------------- /.vs/Supercharger/hr_test/global_history.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/.vs/Supercharger/hr_test/global_history.dat -------------------------------------------------------------------------------- /.vs/Supercharger/hr_test/workbench.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/.vs/Supercharger/hr_test/workbench.dat -------------------------------------------------------------------------------- /.vs/Supercharger/sysdiag/codemap.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/.vs/Supercharger/sysdiag/codemap.dat -------------------------------------------------------------------------------- /.vs/Supercharger/sysdiag/global_history.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/.vs/Supercharger/sysdiag/global_history.dat -------------------------------------------------------------------------------- /.vs/Supercharger/sysdiag/workbench.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/.vs/Supercharger/sysdiag/workbench.dat -------------------------------------------------------------------------------- /.vs/re_sysdiag/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/.vs/re_sysdiag/v14/.suo -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/README.md -------------------------------------------------------------------------------- /bin/sysdiag.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/bin/sysdiag.sys -------------------------------------------------------------------------------- /hr_test/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/hr_test/ReadMe.txt -------------------------------------------------------------------------------- /hr_test/hr_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/hr_test/hr_test.cpp -------------------------------------------------------------------------------- /hr_test/hr_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/hr_test/hr_test.vcxproj -------------------------------------------------------------------------------- /hr_test/hr_test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/hr_test/hr_test.vcxproj.filters -------------------------------------------------------------------------------- /hr_test/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/hr_test/stdafx.cpp -------------------------------------------------------------------------------- /hr_test/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/hr_test/stdafx.h -------------------------------------------------------------------------------- /hr_test/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/hr_test/targetver.h -------------------------------------------------------------------------------- /re_sysdiag.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/re_sysdiag.sln -------------------------------------------------------------------------------- /sysdiag/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/sysdiag/global.h -------------------------------------------------------------------------------- /sysdiag/import_src/gdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/sysdiag/import_src/gdata.c -------------------------------------------------------------------------------- /sysdiag/import_src/gdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/sysdiag/import_src/gdata.h -------------------------------------------------------------------------------- /sysdiag/import_src/gtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/sysdiag/import_src/gtype.h -------------------------------------------------------------------------------- /sysdiag/import_src/hr_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/sysdiag/import_src/hr_sys.c -------------------------------------------------------------------------------- /sysdiag/import_src/hr_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/sysdiag/import_src/hr_sys.h -------------------------------------------------------------------------------- /sysdiag/sysdiag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/sysdiag/sysdiag.c -------------------------------------------------------------------------------- /sysdiag/sysdiag.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/sysdiag/sysdiag.inf -------------------------------------------------------------------------------- /sysdiag/sysdiag.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/sysdiag/sysdiag.vcxproj -------------------------------------------------------------------------------- /sysdiag/sysdiag.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stonedreamforest/re_sysdiag/HEAD/sysdiag/sysdiag.vcxproj.filters --------------------------------------------------------------------------------