mirror of https://github.com/lianthony/NT4.0
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.
58 lines
1.4 KiB
58 lines
1.4 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
|
|
|
|
#ifdef COMPRESS
|
|
|
|
/**************************** COMPRESS MESSAGES ****************************/
|
|
|
|
#define SID_COMPRESSING 20
|
|
#define SID_COMPRESSING_MSZIP 21
|
|
#define SID_COMPRESSING_QUANTUM 22
|
|
|
|
#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
|
|
|
|
#endif
|
|
|
|
extern TCHAR ErrorMsg[];
|
|
|