| 1 | 
 | 
|---|
| 2 | /***********************************************************************
 | 
|---|
| 3 | 
 | 
|---|
| 4 |   $Id: version.h 1335 2008-12-12 23:49:02Z stevenhl $
 | 
|---|
| 5 | 
 | 
|---|
| 6 |   Version labels
 | 
|---|
| 7 | 
 | 
|---|
| 8 |   Copyright (c) 1993-98 M. Kimes
 | 
|---|
| 9 |   Copyright (c) 2001, 2008 Steven H. Levine
 | 
|---|
| 10 | 
 | 
|---|
| 11 |   11 Jun 02 SHL Add CheckVersion VERREALMINOR
 | 
|---|
| 12 |   11 Jun 03 SHL v3.02b: add JFS and FAT32 support
 | 
|---|
| 13 |   04 Nov 03 SHL v3.02c: misc icon cleanup
 | 
|---|
| 14 |   20 Nov 03 SHL v3.02d: defview fixes
 | 
|---|
| 15 |   27 Nov 03 SHL v3.02e: seeall, viewer traps
 | 
|---|
| 16 |   06 Jan 04 SHL v3.02f: dirsize applet large drives
 | 
|---|
| 17 |   10 Jan 04 SHL v3.02f: filldir: avoid spurious error reports
 | 
|---|
| 18 |   11 Mar 04 SHL v3.02g: valid::CheckDrive: debug removable detect
 | 
|---|
| 19 |   26 Jul 04 SHL v3.02h: valid::CheckDrive: debug invisible FAT32
 | 
|---|
| 20 |   31 Jul 04 SHL v3.02h: avv::ArcReviewDlgProc: correct filename flags updates
 | 
|---|
| 21 |   10 Jan 05 SHL v3.02h: Allow DND_TARGET to hold CCHMAXPATH
 | 
|---|
| 22 |   23 May 05 SHL v3.02i: Avoid datamin delays
 | 
|---|
| 23 |   25 May 05 SHL v3.02i: Rework large file/drive support
 | 
|---|
| 24 |   11 Jun 05 SHL v3.02i: filldir: Resolve some icon selection oddities
 | 
|---|
| 25 |   16 Jun 05 SHL v3.03: rework resource kit
 | 
|---|
| 26 |   20 Jul 05 SHL v3.04: update standard makefile for resource replacements
 | 
|---|
| 27 |   16 Aug 05 SHL v3.04pre3: release
 | 
|---|
| 28 |   30 Dec 05 SHL v3.04pre7: wip
 | 
|---|
| 29 |   02 Jan 06 SHL v3.04pre8: archiver enhancements
 | 
|---|
| 30 |   29 May 06 SHL v3.04pre9: archiver enhancements
 | 
|---|
| 31 |   16 Jun 06 SHL v3.04pre10: archiver enhancements
 | 
|---|
| 32 |   12 Jul 06 SHL v3.04pre11: hide not selected, compare content
 | 
|---|
| 33 |   13 Jul 06 SHL v3.04pre12: Rework error logic to report rather than beeping
 | 
|---|
| 34 |   12 Aug 06 SHL v3.04: Release
 | 
|---|
| 35 |   23 Aug 06 SHL v3.05beta01: Release
 | 
|---|
| 36 |   31 Aug 06 SHL v3.05beta02: Release
 | 
|---|
| 37 |   01 Sep 06 SHL v3.05beta03: Release
 | 
|---|
| 38 |   24 Sep 06 SHL v3.05beta04: Release
 | 
|---|
| 39 |   04 Nov 06 SHL v3.05beta05: Release
 | 
|---|
| 40 |   06 Nov 06 SHL v3.05beta06: Release
 | 
|---|
| 41 |   03 Feb 07 SHL v3.05beta07: Release
 | 
|---|
| 42 |   14 Mar 07 SHL v3.05beta08: Release
 | 
|---|
| 43 |   13 May 07 GKY v3.05.09: Release 1st warpin installer version
 | 
|---|
| 44 |   24 Jun 07 GKY v3.06: Release 1st OpenWatcom release
 | 
|---|
| 45 |   21 Aug 07 GKY v3.07beta01: Release
 | 
|---|
| 46 |   31 Aug 07 GKY v3.07: Release modified ini structure
 | 
|---|
| 47 |   11 Nov 07 GKY v3.08 Release large file support
 | 
|---|
| 48 |   10 Jan 08 GKY v3.09 Release
 | 
|---|
| 49 |   02 Mar 08 GKY v3.10 Release
 | 
|---|
| 50 |   06 Jul 08 GKY v3.11 Release
 | 
|---|
| 51 |   21 Jul 08 GKY v3.12
 | 
|---|
| 52 |   01 Sep 08 SHL v3.13
 | 
|---|
| 53 |   08 Sep 08 SHL v3.14pre (shl)
 | 
|---|
| 54 | 
 | 
|---|
| 55 | ***********************************************************************/
 | 
|---|
| 56 | 
 | 
|---|
| 57 | #define VERMAJOR       3
 | 
|---|
| 58 | #define VERMINOR       15
 | 
|---|
| 59 | // Ensure VERREALMINOR nul for non-beta releases
 | 
|---|
| 60 | // #define VERREALMINOR   ""
 | 
|---|
| 61 | // #define VERREALMINOR   " "__DATE__
 | 
|---|
| 62 | #define VERREALMINOR   "pre (shl) " __DATE__ " " __TIME__
 | 
|---|
| 63 | 
 | 
|---|
| 64 | #define APPNAME         "FM2"
 | 
|---|
| 65 | 
 | 
|---|
| 66 | int CheckVersion(int vermajor, int verminor);
 | 
|---|