阅读:1247回复:1
小问题
PIO_STACK_LOCATION IrpSp = 。。。;
IrpSp->Parameters.Read.ByteOffset.LowPart IrpSp->Parameters.Read.Length IrpSp->FileObject->CurrentByteOffset.LowPart 比如当前文件指针指向位置 A ,请问 上面三个东西分别表示什么意思 。 谢谢了 |
|
沙发#
发布于:2009-03-09 11:24
IrpSp->Parameters.Read.ByteOffset.LowPart 此次读的起始位置在文件中的偏移
IrpSp->Parameters.Read.Length 此次读操作的长度 以BYTE为单位 IrpSp->FileObject->CurrentByteOffset.LowPart 当前文件指针在文件中的偏移 |
|