📄 stafzip.h
字号:
/*****************************************************************************//* Software Testing Automation Framework (STAF) *//* (C) Copyright IBM Corp. 2004 *//* *//* This software is licensed under the Common Public License (CPL) V1.0. *//*****************************************************************************/#ifndef STAF_ZIP#define STAF_ZIP#define MAXFILENAME (8192)#define MAXMESSAGE (16384)#define uLong unsigned long#define uInt unsigned int#define BUFREADCOMMENT (0x400)#define Z_BUFSIZE (16384)#ifdef STAF_OS_TYPE_WIN32#define CASESENSITIVITYDEFAULTVALUE (0)#endif#ifdef STAF_OS_TYPE_UNIX#define CASESENSITIVITYDEFAULTVALUE (1)#endif#ifdef __cplusplusextern "C"{#endiftypedef enum STAFZIPError_e{ // add service-specific return codes here kZIPGeneralZipError = 4001, kZIPNotEnoughMemory = 4002, kZIPChangeFileSizeError = 4003, kZIPErrorCreatingDir = 4004, kZIPInvalidZipFile = 4005, kZIPBadCRC = 4006, kZIPInvalidOwnerGroup = 4007, kZIPInvalidFileMode = 4008} STAFZIPError_t;#ifdef __cplusplus}#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -