1#include <windef.h> 2#include <winuser.h> 3 4#include "resource.h" 5 6#define REACTOS_VERSION_DLL 7#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Telephone API UI DLL" 8#define REACTOS_STR_INTERNAL_NAME "tapiui" 9#define REACTOS_STR_ORIGINAL_FILENAME "tapiui.dll" 10#include <reactos/version.rc> 11 12IDI_PHONE ICON "res/201.ico" 13IDI_LOCATION ICON "res/202.ico" 14IDI_CARD ICON "res/203.ico" 15IDI_SEC ICON "res/504.ico" 16 17IDB_RADIO BITMAP "res/301.bmp" 18IDB_WIZARD BITMAP "res/302.bmp" 19 20#include <reactos/manifest_dll.rc> 21 22/* UTF-8 */ 23#pragma code_page(65001) 24 25#ifdef LANGUAGE_DE_DE 26 #include "lang/de-DE.rc" 27#endif 28#ifdef LANGUAGE_EN_US 29 #include "lang/en-US.rc" 30#endif 31#ifdef LANGUAGE_ES_ES 32 #include "lang/es-ES.rc" 33#endif 34#ifdef LANGUAGE_HE_IL 35 #include "lang/he-IL.rc" 36#endif 37#ifdef LANGUAGE_NB_NO 38 #include "lang/no-NO.rc" 39#endif 40#ifdef LANGUAGE_PL_PL 41 #include "lang/pl-PL.rc" 42#endif 43#ifdef LANGUAGE_RO_RO 44 #include "lang/ro-RO.rc" 45#endif 46#ifdef LANGUAGE_RU_RU 47 #include "lang/ru-RU.rc" 48#endif 49#ifdef LANGUAGE_SQ_AL 50 #include "lang/sq-AL.rc" 51#endif 52#ifdef LANGUAGE_TR_TR 53 #include "lang/tr-TR.rc" 54#endif 55#ifdef LANGUAGE_UK_UA 56 #include "lang/uk-UA.rc" 57#endif 58#ifdef LANGUAGE_ZH_CN 59 #include "lang/zh-CN.rc" 60#endif 61#ifdef LANGUAGE_ZH_TW 62 #include "lang/zh-TW.rc" 63#endif 64