45 lines
1.1 KiB
Plaintext
45 lines
1.1 KiB
Plaintext
#include "windows.h"
|
|
#include "..\res.h"
|
|
|
|
#ifdef _WIN32
|
|
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
|
#pragma code_page(1252)
|
|
#endif //_WIN32
|
|
|
|
// Define language of DLL
|
|
RESID_HWXLANGID HWXLANGID DISCARDABLE
|
|
BEGIN
|
|
LANG_CHINESE, SUBLANG_CHINESE_SIMPLIFIED
|
|
END
|
|
|
|
// Version informaton for DLL.
|
|
#ifndef _MAC
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Version
|
|
//
|
|
#include "mshwchs.rcv"
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Recognizer's data
|
|
//
|
|
|
|
STRINGTABLE
|
|
{
|
|
RESID_WISP_FRIENDLYNAME L"Microsoft Chinese (Simplified) Handwriting Recognizer" // Recognizer short name
|
|
RESID_WISP_VENDORNAME L"Microsoft Corporation" // Vendor name
|
|
}
|
|
|
|
RESID_WISP_DATA RCDATA
|
|
{
|
|
6256L, // Recognizer Capability Flags, stored as DWORD
|
|
0x0003,// Number of Languages stored as a WORD
|
|
0x0804,// Recognized Languages stored as WORD
|
|
0x1004,// Recognized Languages stored as WORD
|
|
0x0004,// Recognized Languages stored as WORD
|
|
}
|
|
|
|
|
|
#endif // !_MAC
|