vdkfile.h
来自「Virtual Disk Driver」· C头文件 代码 · 共 57 行
H
57 行
/* vdkfile.h VDK open file structure Copyright (C) 2003 Ken Kato*/#ifndef _VDK_FILE_H_#define _VDK_FILE_H_#ifdef _MSC_VER#pragma pack(4)#endif//// Image file information structure used for opening files// corresponds to each file composing a virtual disk//typedef struct _VDK_OPEN_FILE_ITEM{ ULONG FileType; ULONG Capacity; // capacity in 512 byte sectors ULONG BackOffset; ULONG NameLength;}#ifdef __GNUC____attribute__ ((aligned(4),packed))#endifVDK_OPEN_FILE_ITEM, *PVDK_OPEN_FILE_ITEM;//// Virtual Disk information structure used for opening files// Represents a virtual disk composed of one or more image files.//typedef struct _VDK_OPEN_FILE_INFO{ ULONG DiskType; ULONG Capacity; // capacity in 512 byte sectors ULONG Cylinders; ULONG Tracks; ULONG Sectors; ULONG FilesTotal; VDK_OPEN_FILE_ITEM Files[1];}#ifdef __GNUC____attribute__ ((aligned(4),packed))#endifVDK_OPEN_FILE_INFO, *PVDK_OPEN_FILE_INFO;#define OPEN_FILE_INFO_DEFINED#ifdef _MSC_VER#pragma pack()#endif#endif // _VDK_FILE_H_
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?