isotypes.h
来自「本程序为ST公司开发的源代码」· C头文件 代码 · 共 76 行
H
76 行
/*****************************************************************************//* *//* <C> STMicroelectronics - copyright information *//* *//* *//* COMMENT }DOCUMENTATION *//* File Name :: isotypes.h *//* Creation Date :: September 2005 *//* Author :: Ondrej Trubac *//* Version :: $Revision: 1.5 $ *//* Last change :: $Date: 2006/09/18 09:55:22 $ by $Author: belardi $ *//* Description :: ISO9660 defines *//* } *//*****************************************************************************//*************************************************** * * COPYRIGHT (C) ST Microelectronics 2005 * All Rights Reserved * **************************************************** * * STM CVS Log: * * $Log: ISOtypes.h,v $ * Revision 1.5 2006/09/18 09:55:22 belardi * Corrected CVS keyword usage * * Revision 1.4 2006/09/18 09:24:02 belardi * Added Log CVS keyword into file header * * ***************************************************/#ifndef DEFINE_ISOTYPES_H#define DEFINE_ISOTYPES_H#include "accordoptypes.h" //"aptypes.h"#include "apdevsys.h"typedef struct{ uint16 offset; // entry offset from beginning of path table in bytes uint16 parent; // index of parent uint16 son; // index of first son, 0 if none}PATH_ITEM;typedef struct{ uint16 offset;}FILE_ITEM;typedef struct{ uint32 IsoVolumeLba; uint32 LastSessionLba; uint32 IsoDescriptorLba; uint32 PrimaryDescriptorLba; uint32 SupplementaryDescriptorLba; uint32 PathTableLength; int32 PathTableLba; uint32 RootRecordLba; uint32 DiscSize; uint16 MaxDiscDir; //uint8 VolumeName[34];}PRIVATE_DATA_ISO9660;#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?