stafziplocalfileheader.h
来自「Software Testing Automation Framework (S」· C头文件 代码 · 共 71 行
H
71 行
/*****************************************************************************//* Software Testing Automation Framework (STAF) *//* (C) Copyright IBM Corp. 2004 *//* *//* This software is licensed under the Common Public License (CPL) V1.0. *//*****************************************************************************/#ifndef STAF_ZIPLocalFileHeader#define STAF_ZIPLocalFileHeaderclass STAFZipLocalFileHeader{public: // attributes uLong signature; unsigned short versionNeededToExtract; unsigned short generalPurposeBitFlag; unsigned short compressionMethod; uLong lastModifiedTimeDate; uLong crc; uLong compressedSize; uLong uncompressedSize; unsigned short fileNameLength; unsigned short extraFieldLength; char *fileName; void *extraField; char *fullFileName; uLong offset; uLong size; // methods STAFZipLocalFileHeader(); STAFZipLocalFileHeader(const char*, int); STAFRC_t flush(FILE*, STAFString*); STAFRC_t extract(FILE*, uLong, const char*, STAFString*); STAFRC_t extract(FILE*, uLong, const char*, STAFZipCentralDirExtension*, void*, STAFString*); STAFRC_t doExtract(FILE*, uLong, FILE*, STAFString*); ~STAFZipLocalFileHeader();};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?