mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +00:00
CORE-20573 Improve chkdsk output when failing to complete successfully by adding the returned error code. Return status code from fmifs/chkdsk.c in the "modifier" parameter. If the error returned is STATUS_DISK_CORRUPT_ERROR then display a message that running again may fix it.
20 lines
494 B
C
20 lines
494 B
C
#pragma once
|
|
|
|
/* General IDs */
|
|
#define IDS_USAGE 101
|
|
#define IDS_PERCENT_COMPL 102
|
|
#define IDS_ABOUT 103
|
|
#define IDS_FILE_SYSTEM 104
|
|
|
|
/* Failure IDs */
|
|
#define IDS_VOLUME_IN_USE 200
|
|
#define IDS_CHKDSK_FAIL 201
|
|
#define IDS_NO_ENTRY_POINT 202
|
|
#define IDS_BAD_ARGUMENT 203
|
|
#define IDS_NO_CURRENT_DIR 204
|
|
#define IDS_NO_QUERY_VOL 205
|
|
#define IDS_VOLUME_IN_USE_PROC 206
|
|
#define IDS_RUN_AGAIN 207
|
|
|
|
/* EOF */
|