stafzip.h

来自「Software Testing Automation Framework (S」· C头文件 代码 · 共 55 行

H
55
字号
/*****************************************************************************//* 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 + =
减小字号Ctrl + -
显示快捷键?