Subversion Repositories autosfx

Rev

Blame | Last modification | View Log | RSS feed

  1. /* Version.h
  2. *
  3.  
  4.   Copyright (c) 1990-2007 Info-ZIP.  All rights reserved.
  5.  
  6.   See the accompanying file LICENSE, version 2007-Mar-4 or later
  7.   (the contents of which are also included in zip.h) for terms of use.
  8.   If, for some reason, all these files are missing, the Info-ZIP license
  9.   also may be found at:  ftp://ftp.info-zip.org/pub/infozip/license.html
  10.  
  11.   parts Copyright (C) 1997 Mike White, Eric W. Engler
  12. ************************************************************************
  13.  Copyright (C) 2009, 2010  by Russell J. Peters, Roger Aelbrecht
  14.  
  15.    This file is part of TZipMaster Version 1.9.
  16.  
  17.     TZipMaster is free software: you can redistribute it and/or modify
  18.     it under the terms of the GNU Lesser General Public License as published by
  19.     the Free Software Foundation, either version 3 of the License, or
  20.     (at your option) any later version.
  21.  
  22.     TZipMaster is distributed in the hope that it will be useful,
  23.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  24.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  25.     GNU Lesser General Public License for more details.
  26.  
  27.     You should have received a copy of the GNU Lesser General Public License
  28.     along with TZipMaster.  If not, see <http://www.gnu.org/licenses/>.
  29.  
  30.     contact: problems@delphizip.org (include ZipMaster in the subject).
  31.     updates: http://www.delphizip.org
  32.     DelphiZip maillist subscribe at http://www.freelists.org/list/delphizip
  33. ************************************************************************
  34. */
  35. #ifndef _VERSION_H
  36. #define _VERSION_H
  37.          
  38. #ifdef _DEBUG
  39. #define DLLNAME "DelZip190D"
  40. #else
  41. #define DLLNAME "DelZip190"
  42. #endif
  43.  
  44. #define DZ_VER_MAJOR  1
  45. #define DZ_VER_MINOR  9
  46. #define DZ_VER_REVISION  0
  47. #define DZ_VER_BUILD  87
  48. #define DZ_VER  "1.9.0.0087"
  49.  
  50. #define DZ_VER_PRIVATE ((DZ_VER_MAJOR * 1000000) + (DZ_VER_MINOR * 100000) + (DZ_VER_REVISION * 10000) + DZ_VER_BUILD)
  51. #define DZ_VER_VERSION (DZ_VER_PRIVATE / 10000)
  52.  
  53. //const char *mdate = __DATE__;
  54.  
  55. #endif /* _VERSION_H */
  56.  
  57.  
  58.  
  59.  
  60.