├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── azure-pipelines.yml ├── bvidcelo ├── bvidcelo.c ├── bvidcelo.rc ├── bvidcelo.vcxproj └── bvidcelo.vcxproj.filters ├── canter ├── canter.vcxproj ├── canter.vcxproj.filters ├── device.cpp ├── process.cpp └── string.cpp ├── inc ├── bootvid.h ├── canter │ ├── device.hpp │ ├── process.hpp │ └── string.hpp ├── platform.h ├── version.h └── version.rc ├── lib ├── x64 │ └── bootvid.lib └── x86 │ └── bootvid.lib ├── nt-native.sln ├── ntgfx ├── ntgfx.cpp ├── ntgfx.rc ├── ntgfx.vcxproj └── ntgfx.vcxproj.filters ├── nthello ├── nthello.c ├── nthello.rc ├── nthello.vcxproj └── nthello.vcxproj.filters └── ntkeybin ├── gs.c ├── ntkeybin.cpp ├── ntkeybin.rc ├── ntkeybin.vcxproj └── ntkeybin.vcxproj.filters /.gitattributes: -------------------------------------------------------------------------------- 1 | /inc/*.h linguist-language=C 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /bvidcelo/bvidcelo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/bvidcelo/bvidcelo.c -------------------------------------------------------------------------------- /bvidcelo/bvidcelo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/bvidcelo/bvidcelo.rc -------------------------------------------------------------------------------- /bvidcelo/bvidcelo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/bvidcelo/bvidcelo.vcxproj -------------------------------------------------------------------------------- /bvidcelo/bvidcelo.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/bvidcelo/bvidcelo.vcxproj.filters -------------------------------------------------------------------------------- /canter/canter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/canter/canter.vcxproj -------------------------------------------------------------------------------- /canter/canter.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/canter/canter.vcxproj.filters -------------------------------------------------------------------------------- /canter/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/canter/device.cpp -------------------------------------------------------------------------------- /canter/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/canter/process.cpp -------------------------------------------------------------------------------- /canter/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/canter/string.cpp -------------------------------------------------------------------------------- /inc/bootvid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/inc/bootvid.h -------------------------------------------------------------------------------- /inc/canter/device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/inc/canter/device.hpp -------------------------------------------------------------------------------- /inc/canter/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/inc/canter/process.hpp -------------------------------------------------------------------------------- /inc/canter/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/inc/canter/string.hpp -------------------------------------------------------------------------------- /inc/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/inc/platform.h -------------------------------------------------------------------------------- /inc/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/inc/version.h -------------------------------------------------------------------------------- /inc/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/inc/version.rc -------------------------------------------------------------------------------- /lib/x64/bootvid.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/lib/x64/bootvid.lib -------------------------------------------------------------------------------- /lib/x86/bootvid.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/lib/x86/bootvid.lib -------------------------------------------------------------------------------- /nt-native.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/nt-native.sln -------------------------------------------------------------------------------- /ntgfx/ntgfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/ntgfx/ntgfx.cpp -------------------------------------------------------------------------------- /ntgfx/ntgfx.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/ntgfx/ntgfx.rc -------------------------------------------------------------------------------- /ntgfx/ntgfx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/ntgfx/ntgfx.vcxproj -------------------------------------------------------------------------------- /ntgfx/ntgfx.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/ntgfx/ntgfx.vcxproj.filters -------------------------------------------------------------------------------- /nthello/nthello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/nthello/nthello.c -------------------------------------------------------------------------------- /nthello/nthello.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/nthello/nthello.rc -------------------------------------------------------------------------------- /nthello/nthello.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/nthello/nthello.vcxproj -------------------------------------------------------------------------------- /nthello/nthello.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/nthello/nthello.vcxproj.filters -------------------------------------------------------------------------------- /ntkeybin/gs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/ntkeybin/gs.c -------------------------------------------------------------------------------- /ntkeybin/ntkeybin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/ntkeybin/ntkeybin.cpp -------------------------------------------------------------------------------- /ntkeybin/ntkeybin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/ntkeybin/ntkeybin.rc -------------------------------------------------------------------------------- /ntkeybin/ntkeybin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/ntkeybin/ntkeybin.vcxproj -------------------------------------------------------------------------------- /ntkeybin/ntkeybin.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecatkitty/nt-native/HEAD/ntkeybin/ntkeybin.vcxproj.filters --------------------------------------------------------------------------------