mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
25 lines
520 B
Text
25 lines
520 B
Text
![]() |
#include <windef.h>
|
||
|
#include <winuser.h>
|
||
|
|
||
|
#include "resource.h"
|
||
|
|
||
|
/* Define language neutral resources */
|
||
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
||
|
|
||
|
#define REACTOS_STR_FILE_DESCRIPTION "Run As Utility"
|
||
|
#define REACTOS_STR_INTERNAL_NAME "runas"
|
||
|
#define REACTOS_STR_ORIGINAL_FILENAME "runas.exe"
|
||
|
#include <reactos/version.rc>
|
||
|
|
||
|
#include <reactos/manifest_exe.rc>
|
||
|
|
||
|
/* UTF-8 */
|
||
|
#pragma code_page(65001)
|
||
|
|
||
|
#ifdef LANGUAGE_DE_DE
|
||
|
#include "lang/de-DE.rc"
|
||
|
#endif
|
||
|
#ifdef LANGUAGE_EN_US
|
||
|
#include "lang/en-US.rc"
|
||
|
#endif
|