├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── include └── control.h ├── obderef.sln ├── obderef ├── obderef.cpp ├── obderef.h ├── obderef.vcxproj ├── obderef.vcxproj.filters └── stdafx.h └── obderefdrv ├── init.cpp ├── init.h ├── obderefdrv.vcxproj └── obderefdrv.vcxproj.filters /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swwwolf/obderef/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swwwolf/obderef/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swwwolf/obderef/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swwwolf/obderef/HEAD/README.md -------------------------------------------------------------------------------- /include/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swwwolf/obderef/HEAD/include/control.h -------------------------------------------------------------------------------- /obderef.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swwwolf/obderef/HEAD/obderef.sln -------------------------------------------------------------------------------- /obderef/obderef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swwwolf/obderef/HEAD/obderef/obderef.cpp -------------------------------------------------------------------------------- /obderef/obderef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swwwolf/obderef/HEAD/obderef/obderef.h -------------------------------------------------------------------------------- /obderef/obderef.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swwwolf/obderef/HEAD/obderef/obderef.vcxproj -------------------------------------------------------------------------------- /obderef/obderef.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swwwolf/obderef/HEAD/obderef/obderef.vcxproj.filters -------------------------------------------------------------------------------- /obderef/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swwwolf/obderef/HEAD/obderef/stdafx.h -------------------------------------------------------------------------------- /obderefdrv/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swwwolf/obderef/HEAD/obderefdrv/init.cpp -------------------------------------------------------------------------------- /obderefdrv/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swwwolf/obderef/HEAD/obderefdrv/init.h -------------------------------------------------------------------------------- /obderefdrv/obderefdrv.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swwwolf/obderef/HEAD/obderefdrv/obderefdrv.vcxproj -------------------------------------------------------------------------------- /obderefdrv/obderefdrv.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swwwolf/obderef/HEAD/obderefdrv/obderefdrv.vcxproj.filters --------------------------------------------------------------------------------