mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
2ea56af2e8
Programs: at, charmap, diskpart, drwtsn32, explorer, fc, fontview, format, reg, timeout, where, wmic, mspaint, regedit, runas, rundll32, subst, utilman, umandlg, w32time, winlogon Tools: arping, vgafontedit, explorer-old, fraginator, fontsub, systeminfo, vcdcontroltool CPLs: desk, hotplug, input, sysdm DLLs: newdev, syssetup, user32 Themes: lunar Screensavers: blankscr, butterflies, circles, cylfrac, matrix, mazescr, ssstars, starfield Co-authored-by: Hermès BÉLUSCA - MAÏTO <hermes.belusca-maito@reactos.org> Co-authored-by: Stanislav Motylkov <x86corez@gmail.com>
28 lines
578 B
Plaintext
28 lines
578 B
Plaintext
#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
|
|
#ifdef LANGUAGE_TR_TR
|
|
#include "lang/tr-TR.rc"
|
|
#endif
|