mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
21 lines
524 B
Text
21 lines
524 B
Text
#include <windef.h>
|
|
#include "resource.h"
|
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Disk Checking Utility"
|
|
#define REACTOS_STR_INTERNAL_NAME "chkdsk"
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "chkdsk.exe"
|
|
#define REACTOS_STR_ORIGINAL_COPYRIGHT "1998 Mark Russinovich"
|
|
#include <reactos/version.rc>
|
|
|
|
/* UTF-8 */
|
|
#pragma code_page(65001)
|
|
|
|
#ifdef LANGUAGE_EN_US
|
|
#include "lang/en-US.rc"
|
|
#endif
|
|
#ifdef LANGUAGE_FR_FR
|
|
#include "lang/fr-FR.rc"
|
|
#endif
|
|
#ifdef LANGUAGE_RU_RU
|
|
#include "lang/ru-RU.rc"
|
|
#endif
|