home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hot Shareware 37
/
hot37.iso
/
FICHEROS
/
9TOOL
/
ADDZIP.ZIP
/
vprolog
/
addzip.con
next >
Wrap
Text File
|
1998-05-26
|
3KB
|
104 lines
/******************************************************
Constant definitions for the addZIP compression libraries
******************************************************/
CONSTANTS
% constants for addZIP_CreateSFX(...)
azSFX_NO = 0x00
azSFX_DOS16 = 0x01
azSFX_DOS32 = 0x02
azSFX_WIN16 = 0x03
azSFX_WIN32 = 0x04
% constants for addZIP_SetCompressionLevel(...)
azCOMPRESSION_NONE = 0x00
azCOMPRESSION_MINIMUM = 0x01
azCOMPRESSION_NORMAL = 0x02
azCOMPRESSION_MAXIMUM = 0x03
% constants for addZIP_SaveStructure(...)
azSTRUCTURE_NONE = 0x00
azSTRUCTURE_RELATIVE = 0x01
azSTRUCTURE_ABSOLUTE = 0x02
% constants for addZIP/addUNZIP_Overwrite(...)
azOVERWRITE_QUERY = 0x0a
azOVERWRITE_ALL = 0x0b
azOVERWRITE_NONE = 0x0c
% constants for addZIP_SetArchiveDate()
date_original = 0x00
date_today = 0x01
date_oldest = 0x02
date_newest = 0x03
% constants for addZIP_IncludeXXX attribute functions
azNEVER = 0x00 % files must never have this attribute set
azYES = 0x01 % files may or may not have this attribute set
azALWAYS = 0xff % files must always have this attribute set
% constants for addZIP_Clear/addUNZIP_RestoreAttributes(...)
azATTR_NONE = 0
azATTR_READONLY = 1
azATTR_HIDDEN = 2
azATTR_SYSTEM = 4
azATTR_ARCHIVE = 32
azATTR_ALL = 39
% constants used in messages to identify library
azLIBRARY_ADDZIP = 0
azLIBRARY_ADDUNZIP = 1
% addZIP & addUNZIP messages
am_searching = 0x0a
am_zippcomment = 0x0b
am_zipping = 0x0c
am_zipped = 0x0d
am_unzipping = 0x0e
am_unzipped = 0x0f
am_testing = 0x10
am_tested = 0x11
am_deleting = 0x12
am_deleted = 0x13
am_diskchange = 0x14
am_view = 0x15
am_error = 0x16
am_warning = 0x17
am_queryoverwrite = 0x18
am_copying = 0x19
am_copied = 0x1a
am_abort = 0xff
% am_repairing = 0x1b
% am_filecomment = 0x1c
% am_password = 0x1d
% constants for compression method in AM_VIEW
azCM_NONE = 0x00
azCM_SHRUNK = 0x0a
azCM_REDUCED_1 = 0x14
azCM_REDUCED_2 = 0x1e
azCM_REDUCED_3 = 0x28
azCM_REDUCED_4 = 0x32
azCM_IMPLODED = 0x3c
azCM_TOKENISED = 0x46
azCM_DEFLATED_NORMAL = 0x50
azCM_DEFLATED_MAXIMUM = 0x51
azCM_DEFLATED_FAST = 0x52
azCM_DEFLATED_SUPERFAST = 0x53
azCM_UNKNOWN = 0xff
% constants for whether file is encrypted or not in AM_VIEW
azFT_NOT_ENCRYPTED = 0x00
azFT_ENCRYPTED = 0x01
% constants for whether file is text or binary in AM_VIEW
azFT_TEXT = 0x00
azFT_BINARY = 0x01
% constants used in returning from a AM_QUERYOVERWRITE message
azOW_YES = 0x00
azOW_YES_TO_ALL = 0x01
azOW_NO = 0x02
azOW_NO_TO_ALL = 0x03