阅读:1271回复:3
IP hook 能不能进行写盘操作
就是利用fwrite进行写盘
现在我加入写盘代码,Driver Monitor就出现载入driver错误 错误号0xc000034 |
|
沙发#
发布于:2002-05-20 16:23
在什么平台?
95/98下应该用R0_FileIO,在VToolsD里面有例子, NT下用ZwCreateFile ZwWriteFile |
|
板凳#
发布于:2002-05-20 17:10
在ZwCreateFile中,ObjectName的文件名怎么写
是不是象我这样设置就可以了。 IO_STATUS_BLOCK IoStatusBlock; ObjectAttributes.Length = sizeof(OBJECT_ATTRIBUTES); ObjectAttributes.ObjectName =L\"\\\\??\\\\E:\\\\myfile.dat\"; ObjectAttributes.RootDirectory = NULL; ObjectAttributes.SecurityDescriptor = NULL; ObjectAttributes.SecurityQualityOfService = NULL; ObjectAttributes.Attributes = 0; |
|
地板#
发布于:2002-05-21 14:54
呵呵!你的这部分代码其实有一个函数的!是InitializeObjectAttributes
|
|