1/* 2 * PROJECT: sendmail 3 * LICENSE: LGPL-2.1+ (https://spdx.org/licenses/LGPL-2.1+) 4 * PURPOSE: DeskLink implementation 5 * COPYRIGHT: Copyright 2019 Katayama Hirofumi MZ (katayama.hirofumi.mz@gmail.com) 6 */ 7 8#include <windef.h> 9#include <winuser.h> 10#include "resource.h" 11 12#include "sendmail_version.rc" 13 14/* UTF-8 */ 15#pragma code_page(65001) 16 17LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 18 19IDR_DESKLINK REGISTRY "res/desklink.rgs" 20 21#ifdef LANGUAGE_DE_DE 22 #include "lang/de-DE.rc" 23#endif 24#ifdef LANGUAGE_EN_US 25 #include "lang/en-US.rc" 26#endif 27#ifdef LANGUAGE_ES_ES 28 #include "lang/es-ES.rc" 29#endif 30#ifdef LANGUAGE_FR_FR 31 #include "lang/fr-FR.rc" 32#endif 33#ifdef LANGUAGE_HE_IL 34 #include "lang/he-IL.rc" 35#endif 36#ifdef LANGUAGE_ID_ID 37 #include "lang/id-ID.rc" 38#endif 39#ifdef LANGUAGE_JA_JP 40 #include "lang/ja-JP.rc" 41#endif 42#ifdef LANGUAGE_PL_PL 43 #include "lang/pl-PL.rc" 44#endif 45#ifdef LANGUAGE_PT_PT 46 #include "lang/pt-PT.rc" 47#endif 48#ifdef LANGUAGE_RU_RU 49 #include "lang/ru-RU.rc" 50#endif 51#ifdef LANGUAGE_TR_TR 52 #include "lang/tr-TR.rc" 53#endif 54#ifdef LANGUAGE_ZH_TW 55 #include "lang/zh-TW.rc" 56#endif 57