freeotfe4pdaapiconsts.h
来自「文件驱动加密,功能强大,可产生加密分区,支持AES,MD2,MD4,MD5MD2」· C头文件 代码 · 共 51 行
H
51 行
// Description: FreeOTFE Device Driver API
// By Sarah Dean
// Email: sdean12@sdean12.org
// WWW: http://www.FreeOTFE.org/
//
// -----------------------------------------------------------------------------
//
#ifndef _FreeOTFE4PDAAPIConsts_H
#define _FreeOTFE4PDAAPIConsts_H 1
#include <Windev.h> // Required for CTL_CODE, etc
// =========================================================================
// Const definitions
// Pass to the driver the device handle returned to user app by
// ActivateDeviceEx
#define IOCTL_FREEOTFE_USER_DEV_HANDLE_SET CTL_CODE( \
FILE_DEVICE_UNKNOWN, \
0x815, \
METHOD_BUFFERED, \
FILE_READ_DATA \
)
// Get to the driver the device handle returned to user app by
// ActivateDeviceEx
#define IOCTL_FREEOTFE_USER_DEV_HANDLE_GET CTL_CODE( \
FILE_DEVICE_UNKNOWN, \
0x816, \
METHOD_BUFFERED, \
FILE_READ_DATA \
)
// Get to the driver the device handle returned to user app by
// ActivateDeviceEx
#define IOCTL_FREEOTFE_SET_FORCE_DISMOUNT CTL_CODE( \
FILE_DEVICE_UNKNOWN, \
0x817, \
METHOD_BUFFERED, \
FILE_READ_DATA \
)
// =========================================================================
// =========================================================================
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?