basicwindowskernelprogramming

所属分类:驱动编程
开发工具:C++
文件大小:0KB
下载次数:0
上传日期:2020-05-11 11:18:49
上 传 者sh-1993
说明:  基本Windows内核编程,
(Basic Windows Kernel Programming,)

文件列表:
KeCPU/ (0, 2020-05-11)
KeCPU/KeCPU.sln (2641, 2020-05-11)
KeCPU/KeCPU/ (0, 2020-05-11)
KeCPU/KeCPU/KeCPU.vcxproj (8048, 2020-05-11)
KeCPU/KeCPU/KeCPU.vcxproj.filters (1351, 2020-05-11)
KeCPU/KeCPU/KeMain.cpp (536, 2020-05-11)
KeCPU/KeCPU/cpu.cpp (2587, 2020-05-11)
KeCPU/KeCPU/cpu.h (828, 2020-05-11)
KeDateTime/ (0, 2020-05-11)
KeDateTime/KeDateTime.sln (2656, 2020-05-11)
KeDateTime/KeDateTime/ (0, 2020-05-11)
KeDateTime/KeDateTime/KeDateTime.vcxproj (7950, 2020-05-11)
KeDateTime/KeDateTime/KeDateTime.vcxproj.filters (1142, 2020-05-11)
KeDateTime/KeDateTime/KeMain.cpp (926, 2020-05-11)
KeDebug/ (0, 2020-05-11)
KeDebug/KeDebug.sln (2647, 2020-05-11)
KeDebug/KeDebug/ (0, 2020-05-11)
KeDebug/KeDebug/KeDebug.inf (2325, 2020-05-11)
KeDebug/KeDebug/KeDebug.vcxproj (7394, 2020-05-11)
KeDebug/KeDebug/KeDebug.vcxproj.filters (1133, 2020-05-11)
KeDebug/KeDebug/KeMain.cpp (1649, 2020-05-11)
KeFileRead/ (0, 2020-05-11)
KeFileRead/KeFileRead.sln (2608, 2020-05-11)
KeFileRead/KeFileRead/ (0, 2020-05-11)
KeFileRead/KeFileRead/KeFileRead.inf (2332, 2020-05-11)
KeFileRead/KeFileRead/KeFileRead.vcxproj (7789, 2020-05-11)
KeFileRead/KeFileRead/KeFileRead.vcxproj.filters (936, 2020-05-11)
KeFileRead/KeFileRead/KeMain.cpp (1522, 2020-05-11)
KeFileWrite/ (0, 2020-05-11)
KeFileWrite/KeFileWrite.sln (2611, 2020-05-11)
KeFileWrite/KeFileWrite/ (0, 2020-05-11)
KeFileWrite/KeFileWrite/KeFileWrite.inf (2363, 2020-05-11)
KeFileWrite/KeFileWrite/KeFileWrite.vcxproj (8210, 2020-05-11)
KeFileWrite/KeFileWrite/KeFileWrite.vcxproj.filters (936, 2020-05-11)
KeFileWrite/KeFileWrite/KeMain.cpp (1543, 2020-05-11)
KeHeapAlloc/ (0, 2020-05-11)
KeHeapAlloc/KeHeapAlloc.sln (2611, 2020-05-11)
KeHeapAlloc/KeHeapAlloc/ (0, 2020-05-11)
KeHeapAlloc/KeHeapAlloc/KeHeapAlloc.inf (2363, 2020-05-11)
... ...

### Basic Windows Kernel Programming +++ Tutorial ### Visual Studio Configuration 1- General ==> Windows SDK Version ===> 10.0.10586.0 2- VC++ Directories ==> Include Directories = $(VC_IncludePath);$(WindowsSDK_IncludePath); 3- C/C++ ===> General ===> Additional Include Directories ===> C:\Program Files %28x86%29\Windows Kits\10\Include\10.0.17134.0\km;%(AdditionalIncludeDirectories) 4- Linker ===> Advanced ===> Entry Point ===> DriverEntry 5- Delete file .inf #### Enable kernel debug Of registery HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session manager\Deubug Print Filter\DEFAULT 0xf #### Topics: 1- [KeCPU](https://github.com/raminfp/basicwindowskernelprogramming/tree/master/KeCPU)
2- [KeDateTime](https://github.com/raminfp/basicwindowskernelprogramming/tree/master/KeDateTime)
3- [KeDebug](https://github.com/raminfp/basicwindowskernelprogramming/tree/master/KeDebug)
4- [KeJsonParser](https://github.com/raminfp/basicwindowskernelprogramming/tree/master/KeJsonParser)
5- [KeMalloc](https://github.com/raminfp/basicwindowskernelprogramming/tree/master/KeMalloc)
6- [KeOSBuild](https://github.com/raminfp/basicwindowskernelprogramming/tree/master/KeOSBuild)
7- [KeOSVersion](https://github.com/raminfp/basicwindowskernelprogramming/tree/master/KeOSVersion)
8- [KeShellCode](https://github.com/raminfp/basicwindowskernelprogramming/tree/master/KeShellCode)
9- [KeString](https://github.com/raminfp/basicwindowskernelprogramming/tree/master/KeString)
10- [KeThread](https://github.com/raminfp/basicwindowskernelprogramming/tree/master/KeThread)
11- [KeTimer](https://github.com/raminfp/basicwindowskernelprogramming/tree/master/KeTimer)
12- [KeVector](https://github.com/raminfp/basicwindowskernelprogramming/tree/master/KeVector)
13- [KeHeapAlloc](https://github.com/raminfp/basicwindowskernelprogramming/tree/master/KeHeapAlloc)
14- [KeFileWrite](https://github.com/raminfp/basicwindowskernelprogramming/tree/master/KeFileWrite)
15- [KeFileRead](https://github.com/raminfp/basicwindowskernelprogramming/tree/master/KeFileRead)
16- [KeLinkList](https://github.com/raminfp/basicwindowskernelprogramming/tree/master/KeLinkList)
17- [KeSpinLock](https://github.com/raminfp/basicwindowskernelprogramming/tree/master/KeSpinLock)
18- [KeWdmVersion](https://github.com/raminfp/basicwindowskernelprogramming/tree/master/KeWdmVersion)
19- [KeLongIntegerData](https://github.com/raminfp/basicwindowskernelprogramming/tree/master/KeLongIntegerData)
#### TODO - Advance Windows kernel Programming #### Awesome Book by Pavel Yosifovich - https://leanpub.com/windowskernelprogramming ![windows kernel programming](https://m.media-amazon.com/images/I/41qJOhBcKuL.jpg " Pavel Yosifovich")

近期下载者

相关文件


收藏者