reactos/base/applications/cmdutils/fc/resource.h
Katayama Hirofumi MZ 8bf471105e
[CMDUTILS][FC] Initial implement FC command (#3622)
Implement FC (file comparison) command. As a starting point, we support binary mode comparison at first. Text mode comparison and wildcard are not supported yet. CORE-17500
2021-04-25 13:06:13 +09:00

14 lines
481 B
C

#define IDS_USAGE 1000
#define IDS_NO_DIFFERENCE 1001
#define IDS_LONGER_THAN 1002
#define IDS_COMPARING 1003
#define IDS_OUT_OF_MEMORY 1004
#define IDS_CANNOT_READ 1005
#define IDS_INVALID_SWITCH 1006
#define IDS_CANNOT_OPEN 1007
#define IDS_NEEDS_FILES 1008
#define IDS_CANT_USE_WILDCARD 1009
#define IDS_DIFFERENT 1010
#define IDS_TOO_LARGE 1011
#define IDS_RESYNCH_FAILED 1012