1#include <windef.h> 2#include <winuser.h> 3#include <commctrl.h> 4#include <richedit.h> 5 6#include "resource.h" 7 8#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Event Log Viewer" 9#define REACTOS_STR_INTERNAL_NAME "eventvwr" 10#define REACTOS_STR_ORIGINAL_FILENAME "eventvwr.exe" 11#include <reactos/version.rc> 12 13#include <reactos/manifest_exe.rc> 14 15LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 16 17/* Shared icons */ 18IDI_EVENTVWR ICON "res/eventvwr.ico" 19IDI_EVENTLOG ICON "res/eventlog.ico" 20IDI_CLOSED_CATEGORY ICON "res/folder.ico" 21IDI_OPENED_CATEGORY ICON "res/folderopen.ico" 22 23IDI_INFORMATIONICON ICON "res/info.ico" 24IDI_WARNINGICON ICON "res/warning.ico" 25IDI_ERRORICON ICON "res/error.ico" 26IDI_AUDITSUCCESSICON ICON "res/key.ico" 27IDI_AUDITFAILUREICON ICON "res/lock.ico" 28 29/* Event Navigation */ 30IDI_NEXT ICON "res/next_event.ico" 31IDI_PREV ICON "res/prev_event.ico" 32IDI_COPY ICON "res/copy.ico" 33 34/* UTF-8 */ 35#pragma code_page(65001) 36 37#ifdef LANGUAGE_BG_BG 38 #include "lang/bg-BG.rc" 39#endif 40#ifdef LANGUAGE_CS_CZ 41 #include "lang/cs-CZ.rc" 42#endif 43#ifdef LANGUAGE_DE_DE 44 #include "lang/de-DE.rc" 45#endif 46#ifdef LANGUAGE_EL_GR 47 #include "lang/el-GR.rc" 48#endif 49#ifdef LANGUAGE_EN_US 50 #include "lang/en-US.rc" 51#endif 52#ifdef LANGUAGE_ES_ES 53 #include "lang/es-ES.rc" 54#endif 55#ifdef LANGUAGE_FR_FR 56 #include "lang/fr-FR.rc" 57#endif 58#ifdef LANGUAGE_HE_IL 59 #include "lang/he-IL.rc" 60#endif 61#ifdef LANGUAGE_IT_IT 62 #include "lang/it-IT.rc" 63#endif 64#ifdef LANGUAGE_JA_JP 65 #include "lang/ja-JP.rc" 66#endif 67#ifdef LANGUAGE_KO_KR 68 #include "lang/ko-KR.rc" 69#endif 70#ifdef LANGUAGE_NB_NO 71 #include "lang/no-NO.rc" 72#endif 73#ifdef LANGUAGE_PL_PL 74 #include "lang/pl-PL.rc" 75#endif 76#ifdef LANGUAGE_PT_BR 77 #include "lang/pt-BR.rc" 78#endif 79#ifdef LANGUAGE_RO_RO 80 #include "lang/ro-RO.rc" 81#endif 82#ifdef LANGUAGE_RU_RU 83 #include "lang/ru-RU.rc" 84#endif 85#ifdef LANGUAGE_SK_SK 86 #include "lang/sk-SK.rc" 87#endif 88#ifdef LANGUAGE_SQ_AL 89 #include "lang/sq-AL.rc" 90#endif 91#ifdef LANGUAGE_SV_SE 92 #include "lang/sv-SE.rc" 93#endif 94#ifdef LANGUAGE_TR_TR 95 #include "lang/tr-TR.rc" 96#endif 97#ifdef LANGUAGE_UK_UA 98 #include "lang/uk-UA.rc" 99#endif 100#ifdef LANGUAGE_ZH_CN 101 #include "lang/zh-CN.rc" 102#endif 103#ifdef LANGUAGE_ZH_TW 104 #include "lang/zh-TW.rc" 105#endif 106