You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.8 KiB
67 lines
1.8 KiB
/*
|
|
** messages.h - Messages displayed by LZA file compression / expansion
|
|
** programs.
|
|
**
|
|
** These messages follow printf() formatting conventions. This module is
|
|
** included twice - once for COMPRESS (COMPRESS defined) and once for EXPAND
|
|
** (COMPRESS not defined).
|
|
**
|
|
** Converted to stringtable, FloydR, 2/10/93
|
|
*/
|
|
|
|
|
|
// Constants
|
|
/////////////
|
|
|
|
/***************************** COMMON MESSAGES *****************************/
|
|
|
|
#define SID_INSUFF_MEM 1
|
|
#define SID_NOT_A_DIR 2
|
|
#define SID_BAD_SWITCH 3
|
|
#define SID_NO_FILE_SPECS 4
|
|
#define SID_NO_OVERWRITE 5
|
|
#define SID_NO_OPEN_INPUT 6
|
|
#define SID_NO_READ_INPUT 7
|
|
#define SID_NO_OPEN_OUTPUT 8
|
|
#define SID_OUT_OF_SPACE 9
|
|
#define SID_BANNER_TEXT 10
|
|
#define SID_GEN_FAILURE 11
|
|
#define SID_COLLISION 12
|
|
#define SID_FILE_REPORT 13
|
|
#define SID_EMPTY_FILE_REPORT 14
|
|
#define SID_TOTAL_REPORT 15
|
|
#define SID_INSTRUCTIONS 16
|
|
#define SID_INSTRUCTIONS2 17
|
|
#define SID_INSTRUCTIONS3 18
|
|
#define SID_BAD_SWITCH2 19
|
|
|
|
#ifdef COMPRESS
|
|
|
|
/**************************** COMPRESS MESSAGES ****************************/
|
|
|
|
#define SID_COMPRESSING 20
|
|
#define SID_COMPRESSING_MSZIP 21
|
|
#define SID_COMPRESSING_QUANTUM 22
|
|
#define SID_COMPRESSING_LZX 23
|
|
#define SID_INVALID_LIST_FILE 24
|
|
|
|
#else // EXPAND
|
|
|
|
/***************************** EXPAND Messages *****************************/
|
|
|
|
#define SID_EXPANDING 20
|
|
#define SID_COPYING 21
|
|
#define SID_COPY_REPORT 22
|
|
#define SID_FORMAT_ERROR 23
|
|
#define SID_UNKNOWN_ALG 24
|
|
#define SID_UNEXP_TARGET 25
|
|
#define SID_LISTING 26
|
|
#define SID_TOTAL_COUNT 27
|
|
#define SID_NO_MATCHES 28
|
|
#define SID_DEST_REQUIRED 29
|
|
#define SID_FILESPEC_REQUIRED 30
|
|
|
|
#endif
|
|
|
|
extern TCHAR ErrorMsg[];
|
|
|