kernel_1_1

first.c

 1 #pragma once
2
3 #ifdef __cplusplus
4 extern "C" {
5 #endif
6
7 #include <ntddk.h>
8
9 #ifdef __cplusplus
10 }
11 #endif
12
13 DRIVER_INITIALIZE DriverEntry;
14 DRIVER_UNLOAD DriverUnload;
15
16 #pragma code_seg("INIT")
17 EXTERN_C NTSTATUS DriverEntry( IN PDRIVER_OBJECT pDriverObject,
18 IN PUNICODE_STRING pRegisterPath )
19 {
20 DbgPrint("first: Hello World!\r\n");
21
22 pDriverObject->DriverUnload = DriverUnload;
23 return STATUS_SUCCESS;
24 }
25
26 #pragma code_seg("PAGE")
27 VOID DriverUnload( PDRIVER_OBJECT DriverObject )
28 {
29 DbgPrint("first: Our driver is unloading...\r\n");
30 }

makefile

#
# DO
NOT EDIT THIS FILE!!! Edit .\sources. if you want to add a new source
# file to this component. This file merely indirects to the real make file
# that is shared by all the driver components of the Windows NT DDK
#

!INCLUDE $(NTMAKEENV)\makefile.def

sources

1 TARGETNAME=first
2 TARGETTYPE=DRIVER
3 TARGETPATH=obj
4 SOURCES=..\first.c

我推荐你用CMD编译 当然你可以使用IDE

VisualStdio 6.0 sp6的Project Setting设置如下

C/C++ Tab

/nologo /Gz /MLd /W3 /WX /Z7 /Od
/D WIN32=100 /D _X86_=1 /D WINVER=0x500 /D DBG=1
/Fo"Check" /Fd"Check" /FD /c

Link Tab

ntoskrnl.lib /nologo /base:"0x10000" /stack:0x400000,0x1000
/entry:"DriverEntry" /subsystem:console /incremental:no
/pdb:"Check/first.pdb" /pdbtype:sept
/subsystem:native /driver
/SECTION:INIT, D /RELEASE /IGNORE:4078

你需要一个软件用来安装NT式驱动 Open之后点选GO/STOP就好

名称 Debug Monitor

版权 Compuware Corporation - NuMega Lab

它是 DriverStudio 的一个组件,  需要 dbgmsgcfg.dll 支持运行

7EUIIIYTi0P8HKyajtdFljooAAAAASUVORK5CYII=

还需要一个软件用来显示内核信息 因为内核并不会有控制台或消息框

名称 Dbgview

特别注意 Capture -> Capture Kernel 必须勾选

你可以在 Device Manager 的 Non-Plug and Play Drivers(隐cang)

看到你的这个设备 当然 非即插即用设备是隐cang的  // 程序猿要回避zheng_zhi...

所以 View -> 显示隐cang的设备 必须勾选

转载于:https://www.cnblogs.com/ddbcn/archive/2011/09/17/2179873.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值