2008-06-18 19:10:39 +00:00
|
|
|
#include <windows.h>
|
|
|
|
#include <commctrl.h>
|
|
|
|
#include "resource.h"
|
|
|
|
|
|
|
|
|
2008-06-19 08:36:17 +00:00
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS API test GUI\0"
|
|
|
|
#define REACTOS_STR_INTERNAL_NAME "WinetestsGUI\0"
|
|
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "WinetestsGUI.exe\0"
|
2008-06-18 19:10:39 +00:00
|
|
|
//#include <reactos/version.rc>
|
|
|
|
|
|
|
|
#include "rsrc.rc"
|
[TRANSLATION] Polish translation update
Polish translation of net, telnet, diskpart, devcpux, fontext, iernonce, lsasrv, themes, arping, frag, screensavers, ctm, fontsub, WinetestsGUI and localmon.
Update for dxdiag, msgina, msports, netcfgx, shell32 and syssetup.
2018-10-13 10:27:52 +00:00
|
|
|
|
|
|
|
/* UTF-8 */
|
|
|
|
#pragma code_page(65001)
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef LANGUAGE_EN_US
|
|
|
|
#include "lang/en-US.rc"
|
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_PL_PL
|
|
|
|
#include "lang/pl-PL.rc"
|
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_TR_TR
|
|
|
|
#include "lang/tr-TR.rc"
|
|
|
|
#endif
|