📄 vdkfile.h
字号:
/* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -