2013-01-24 23:00:42 +00:00
|
|
|
#include <windef.h>
|
|
|
|
#include <winuser.h>
|
|
|
|
|
2012-01-19 18:15:49 +00:00
|
|
|
#include "resource.h"
|
|
|
|
|
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
|
|
|
|
#define REACTOS_VERSION_DLL
|
2013-11-28 22:12:52 +00:00
|
|
|
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS WineD3D Configuration Control Panel"
|
|
|
|
#define REACTOS_STR_INTERNAL_NAME "WineD3Dcfg"
|
|
|
|
#define REACTOS_STR_ORIGINAL_FILENAME "WineD3Dcfg.cpl"
|
2012-01-19 18:15:49 +00:00
|
|
|
#include <reactos/version.rc>
|
|
|
|
|
2013-11-28 22:12:52 +00:00
|
|
|
IDI_CPLICON ICON "resources/wined3dcfg.ico"
|
2012-01-19 18:15:49 +00:00
|
|
|
|
2013-09-17 15:21:29 +00:00
|
|
|
#include <reactos/manifest_dll.rc>
|
2013-09-16 23:31:38 +00:00
|
|
|
|
2013-11-28 22:12:52 +00:00
|
|
|
/* UTF-8 */
|
|
|
|
#pragma code_page(65001)
|
|
|
|
|
|
|
|
#ifdef LANGUAGE_CS_CZ
|
|
|
|
#include "lang/cs-CZ.rc"
|
|
|
|
#endif
|
2013-12-01 22:41:46 +00:00
|
|
|
#ifdef LANGUAGE_DE_DE
|
|
|
|
#include "lang/de-DE.rc"
|
|
|
|
#endif
|
2013-11-28 22:12:52 +00:00
|
|
|
#ifdef LANGUAGE_EN_US
|
|
|
|
#include "lang/en-US.rc"
|
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_HE_IL
|
|
|
|
#include "lang/he-IL.rc"
|
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_PL_PL
|
|
|
|
#include "lang/pl-PL.rc"
|
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_RO_RO
|
|
|
|
#include "lang/ro-RO.rc"
|
|
|
|
#endif
|
2014-02-08 15:06:20 +00:00
|
|
|
#ifdef LANGUAGE_SQ_AL
|
|
|
|
#include "lang/sq-AL.rc"
|
|
|
|
#endif
|
2013-11-28 22:12:52 +00:00
|
|
|
#ifdef LANGUAGE_TR_TR
|
|
|
|
#include "lang/tr-TR.rc"
|
|
|
|
#endif
|