Clone
ixen
committed
on 05 Dec 20
Fixed minor unit tests problem.
src/ch/version.h (+22)
  1 #ifndef __VERSION_H__
  2 #define __VERSION_H__
  3
  4 #ifndef _T
  5         #define _T(text) text
  6 #endif
  7
  8 // Product name
  9 #define PRODUCT_NAME _T("Copy Handler")
  10 // Version of program
  11 #define PRODUCT_VERSION1 1
  12 #define PRODUCT_VERSION2 30
  13 #define PRODUCT_VERSION3 58
  14 #define PRODUCT_VERSION4 0
  15
  16 #define PRODUCT_VERSION _T("1.30beta-svn58")
  17
  18 // Full product information (concatenation of the three above informations)
  19 #define PRODUCT_FULL_VERSION PRODUCT_NAME _T(" ") PRODUCT_VERSION
  20
  21 #define COPYRIGHT_INFO  _T("Copyright (C) 2001-2008 J�zef Starosczyk")
  22 #endif