├── .gitignore ├── Hash.h ├── LICENSE ├── NativeLib.vcxproj ├── NativeLib.vcxproj.filters ├── NativeLib.vcxproj.user ├── README.md ├── my.cpp ├── my.h ├── ntdbg.h ├── ntexapi.h ├── ntgdi.h ├── ntioapi.h ├── ntkeapi.h ├── ntldr.h ├── ntlpcapi.h ├── ntmisc.h ├── ntmmapi.h ├── ntnls.h ├── ntobapi.h ├── ntpebteb.h ├── ntpfapi.h ├── ntpnpapi.h ├── ntpoapi.h ├── ntpsapi.h ├── ntregapi.h ├── ntrtl.h ├── ntsam.h ├── ntseapi.h ├── ntsmss.h ├── nttmapi.h ├── nttp.h ├── ntwow64.h ├── ntxcapi.h ├── phnt.h ├── phnt_ntdef.h ├── phnt_windows.h ├── subprocesstag.h └── winsta.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/.gitignore -------------------------------------------------------------------------------- /Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/Hash.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/LICENSE -------------------------------------------------------------------------------- /NativeLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/NativeLib.vcxproj -------------------------------------------------------------------------------- /NativeLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/NativeLib.vcxproj.filters -------------------------------------------------------------------------------- /NativeLib.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/NativeLib.vcxproj.user -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/README.md -------------------------------------------------------------------------------- /my.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/my.cpp -------------------------------------------------------------------------------- /my.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/my.h -------------------------------------------------------------------------------- /ntdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/ntdbg.h -------------------------------------------------------------------------------- /ntexapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/ntexapi.h -------------------------------------------------------------------------------- /ntgdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/ntgdi.h -------------------------------------------------------------------------------- /ntioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/ntioapi.h -------------------------------------------------------------------------------- /ntkeapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/ntkeapi.h -------------------------------------------------------------------------------- /ntldr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/ntldr.h -------------------------------------------------------------------------------- /ntlpcapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/ntlpcapi.h -------------------------------------------------------------------------------- /ntmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/ntmisc.h -------------------------------------------------------------------------------- /ntmmapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/ntmmapi.h -------------------------------------------------------------------------------- /ntnls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/ntnls.h -------------------------------------------------------------------------------- /ntobapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/ntobapi.h -------------------------------------------------------------------------------- /ntpebteb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/ntpebteb.h -------------------------------------------------------------------------------- /ntpfapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/ntpfapi.h -------------------------------------------------------------------------------- /ntpnpapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/ntpnpapi.h -------------------------------------------------------------------------------- /ntpoapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/ntpoapi.h -------------------------------------------------------------------------------- /ntpsapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/ntpsapi.h -------------------------------------------------------------------------------- /ntregapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/ntregapi.h -------------------------------------------------------------------------------- /ntrtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/ntrtl.h -------------------------------------------------------------------------------- /ntsam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/ntsam.h -------------------------------------------------------------------------------- /ntseapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/ntseapi.h -------------------------------------------------------------------------------- /ntsmss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/ntsmss.h -------------------------------------------------------------------------------- /nttmapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/nttmapi.h -------------------------------------------------------------------------------- /nttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/nttp.h -------------------------------------------------------------------------------- /ntwow64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/ntwow64.h -------------------------------------------------------------------------------- /ntxcapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/ntxcapi.h -------------------------------------------------------------------------------- /phnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/phnt.h -------------------------------------------------------------------------------- /phnt_ntdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/phnt_ntdef.h -------------------------------------------------------------------------------- /phnt_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/phnt_windows.h -------------------------------------------------------------------------------- /subprocesstag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/subprocesstag.h -------------------------------------------------------------------------------- /winsta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/NativeLib-R/HEAD/winsta.h --------------------------------------------------------------------------------