Subversion Repositories autosfx

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 daniel-mar 1
unit ZMCtx19;
2
 
3
(*
4
  ZMCtx19.pas - DialogBox help context values
5
 Copyright (C) 2009, 2010  by Russell J. Peters, Roger Aelbrecht,
6
      Eric W. Engler and Chris Vleghert.
7
 
8
   This file is part of TZipMaster Version 1.9.
9
 
10
    TZipMaster is free software: you can redistribute it and/or modify
11
    it under the terms of the GNU Lesser General Public License as published by
12
    the Free Software Foundation, either version 3 of the License, or
13
    (at your option) any later version.
14
 
15
    TZipMaster is distributed in the hope that it will be useful,
16
    but WITHOUT ANY WARRANTY; without even the implied warranty of
17
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
    GNU Lesser General Public License for more details.
19
 
20
    You should have received a copy of the GNU Lesser General Public License
21
    along with TZipMaster.  If not, see <http://www.gnu.org/licenses/>.
22
 
23
    contact: problems@delphizip.org (include ZipMaster in the subject).
24
    updates: http://www.delphizip.org
25
    DelphiZip maillist subscribe at http://www.freelists.org/list/delphizip
26
************************************************************************)
27
 
28
interface
29
 
30
const
31
  DHCBase = 10000;
32
  DHC_ZipMessage = DHCBase;
33
  DHC_ExMessage = DHCBase + 1;
34
  DHC_Password = DHCBase + 2; // just GetPassword default password
35
  DHC_ExtrPwrd = DHCBase + 3;
36
  DHC_AddPwrd1 = DHCBase + 4;
37
  DHC_AddPwrd2 = DHCBase + 5;
38
  DHC_WrtSpnDel = DHCBase + 6;
39
  DHC_ExSFX2EXE = DHCBase + 7;
40
  DHC_ExSFX2Zip = DHCBase + 8;
41
  DHC_SpanNxtW = DHCBase + 9;
42
  DHC_SpanNxtR = DHCBase + 10;  
43
  DHC_SpanOvr = DHCBase + 11;
44
  DHC_SpanNoOut = DHCBase + 12;
45
  DHC_SpanSpace = DHCBase + 13;
46
  DHC_CpyZipOvr = DHCBase + 14;
47
  DHC_FormErase = DHCBase + 15;
48
  DHC_ExSFXNew = DHCBase + 16;
49
 
50
implementation
51
 
52
end.