mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 15:43:00 +00:00

Based from a patch by Lee Schröder, with modifications by myself. CORE-10044 #resolve svn path=/trunk/; revision=75968
21 lines
463 B
Text
21 lines
463 B
Text
#include <windef.h>
|
|
// #include <winuser.h>
|
|
|
|
#include "resource.h"
|
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Timeout Utility"
|
|
#define REACTOS_STR_INTERNAL_NAME "timeout"
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "timeout.exe"
|
|
#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
|