├── .gitattributes ├── .gitignore ├── Common-Registry.sln ├── KernelMode ├── KernelMode.vcxproj ├── KernelMode.vcxproj.filters ├── KernelMode.vcxproj.user ├── Source.cpp └── utils.h ├── README.md └── UserMode ├── UserMode.cpp ├── UserMode.vcxproj ├── UserMode.vcxproj.filters └── UserMode.vcxproj.user /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBalloon/Common-Registry/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBalloon/Common-Registry/HEAD/.gitignore -------------------------------------------------------------------------------- /Common-Registry.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBalloon/Common-Registry/HEAD/Common-Registry.sln -------------------------------------------------------------------------------- /KernelMode/KernelMode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBalloon/Common-Registry/HEAD/KernelMode/KernelMode.vcxproj -------------------------------------------------------------------------------- /KernelMode/KernelMode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBalloon/Common-Registry/HEAD/KernelMode/KernelMode.vcxproj.filters -------------------------------------------------------------------------------- /KernelMode/KernelMode.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBalloon/Common-Registry/HEAD/KernelMode/KernelMode.vcxproj.user -------------------------------------------------------------------------------- /KernelMode/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBalloon/Common-Registry/HEAD/KernelMode/Source.cpp -------------------------------------------------------------------------------- /KernelMode/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBalloon/Common-Registry/HEAD/KernelMode/utils.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBalloon/Common-Registry/HEAD/README.md -------------------------------------------------------------------------------- /UserMode/UserMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBalloon/Common-Registry/HEAD/UserMode/UserMode.cpp -------------------------------------------------------------------------------- /UserMode/UserMode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBalloon/Common-Registry/HEAD/UserMode/UserMode.vcxproj -------------------------------------------------------------------------------- /UserMode/UserMode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBalloon/Common-Registry/HEAD/UserMode/UserMode.vcxproj.filters -------------------------------------------------------------------------------- /UserMode/UserMode.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBalloon/Common-Registry/HEAD/UserMode/UserMode.vcxproj.user --------------------------------------------------------------------------------