├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── Registry.sln ├── Registry ├── Registry.vcxproj ├── include │ └── Registry.hpp └── src │ └── Registry.cpp ├── RegistryTest ├── RegistryTest.cpp ├── RegistryTest.vcxproj ├── stdafx.cpp ├── stdafx.h └── targetver.h └── appveyor.yml /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: m4x1m1l14n 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4x1m1l14n/Registry/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4x1m1l14n/Registry/HEAD/README.md -------------------------------------------------------------------------------- /Registry.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4x1m1l14n/Registry/HEAD/Registry.sln -------------------------------------------------------------------------------- /Registry/Registry.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4x1m1l14n/Registry/HEAD/Registry/Registry.vcxproj -------------------------------------------------------------------------------- /Registry/include/Registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4x1m1l14n/Registry/HEAD/Registry/include/Registry.hpp -------------------------------------------------------------------------------- /Registry/src/Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4x1m1l14n/Registry/HEAD/Registry/src/Registry.cpp -------------------------------------------------------------------------------- /RegistryTest/RegistryTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4x1m1l14n/Registry/HEAD/RegistryTest/RegistryTest.cpp -------------------------------------------------------------------------------- /RegistryTest/RegistryTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4x1m1l14n/Registry/HEAD/RegistryTest/RegistryTest.vcxproj -------------------------------------------------------------------------------- /RegistryTest/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4x1m1l14n/Registry/HEAD/RegistryTest/stdafx.cpp -------------------------------------------------------------------------------- /RegistryTest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4x1m1l14n/Registry/HEAD/RegistryTest/stdafx.h -------------------------------------------------------------------------------- /RegistryTest/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4x1m1l14n/Registry/HEAD/RegistryTest/targetver.h -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4x1m1l14n/Registry/HEAD/appveyor.yml --------------------------------------------------------------------------------