scanuser.h
来自「winddk src目录下的文件系统驱动源码压缩!」· C头文件 代码 · 共 68 行
H
68 行
/*++
Copyright (c) 1999-2002 Microsoft Corporation
Module Name:
scanuser.h
Abstract:
Header file which contains the structures, type definitions,
constants, global variables and function prototypes for the
user mode part of the scanner.
Environment:
Kernel & user mode
--*/
#ifndef __SCANUSER_H__
#define __SCANUSER_H__
#pragma pack(1)
typedef struct _SCANNER_MESSAGE {
//
// Required structure header.
//
FILTER_MESSAGE_HEADER MessageHeader;
//
// Private scanner-specific fields begin here.
//
SCANNER_NOTIFICATION Notification;
//
// Overlapped structure: this is not really part of the message
// However we embed it instead of using a separately allocated overlap structure
//
OVERLAPPED Ovlp;
} SCANNER_MESSAGE, *PSCANNER_MESSAGE;
typedef struct _SCANNER_REPLY_MESSAGE {
//
// Required structure header.
//
FILTER_REPLY_HEADER ReplyHeader;
//
// Private scanner-specific fields begin here.
//
SCANNER_REPLY Reply;
} SCANNER_REPLY_MESSAGE, *PSCANNER_REPLY_MESSAGE;
#endif // __SCANUSER_H__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?