26 lines
856 B
Plaintext
26 lines
856 B
Plaintext
|
#include <windows.h>
|
||
|
|
||
|
//!!!TODO: Office cannot use resource strings, so built-in codecs will
|
||
|
//!!! have hardcoded strings for now. Need to figure out how to
|
||
|
//!!! make these localizable (maybe hardcoded for gdipstat.lib,
|
||
|
//!!! resource strings for gdiplus.dll?).
|
||
|
//#define USE_RESOURCE_STRINGS
|
||
|
#if defined(USE_RESOURCE_STRINGS)
|
||
|
#include "imgrsrc.rc"
|
||
|
#endif
|
||
|
|
||
|
#include "gpverp.h"
|
||
|
|
||
|
// Database of Thai words - centerpiece of Thai word/line break algorithm
|
||
|
//
|
||
|
SIAMMAIN SIAMDB "..\\Text\\Uniscribe\\siammain.bin"
|
||
|
SIAMSPL SIAMDB "..\\Text\\Uniscribe\\siamspl.bin"
|
||
|
|
||
|
#define VER_FILETYPE VFT_DLL
|
||
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
||
|
#define VER_FILEDESCRIPTION_STR "Microsoft GDI+"
|
||
|
#define VER_INTERNALNAME_STR "gdiplus\0"
|
||
|
|
||
|
#include "common.ver"
|
||
|
|