- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
version.h
资源名称:unzip540.zip [点击查看]
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:1k
源码类别:
压缩解压
开发平台:
MultiPlatform
- /*
- version.h (for UnZip) by Info-ZIP.
- This header file is not copyrighted and may be distributed without
- restriction. (That's a little geek humor, heh heh.)
- */
- #ifndef __version_h /* don't include more than once */
- #define __version_h
- #ifdef BETA
- # undef BETA /* define BETA for internal beta releases */
- #endif
- #ifdef BETA
- # define BETALEVEL "d BETA"
- # define VERSION_DATE "27 November 98" /* internal beta version */
- #else
- # define BETALEVEL ""
- # define VERSION_DATE "28 November 1998" /* official release version */
- # define RELEASE
- #endif
- #define UZ_MAJORVER 5 /* UnZip */
- #define UZ_MINORVER 4
- #define ZI_MAJORVER 2 /* ZipInfo */
- #define ZI_MINORVER 3
- #define PATCHLEVEL 0
- /* these are obsolete but remain for backward compatibility: */
- #define D2_MAJORVER UZ_MAJORVER /* DLL for OS/2 */
- #define D2_MINORVER UZ_MINORVER
- #define D2_PATCHLEVEL PATCHLEVEL
- #define DW_MAJORVER UZ_MAJORVER /* DLL for MS Windows */
- #define DW_MINORVER UZ_MINORVER
- #define DW_PATCHLEVEL PATCHLEVEL
- #define WIN_VERSION_DATE VERSION_DATE
- #endif /* !__version_h */