You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
494 B
19 lines
494 B
/*****************************************************************/
|
|
/** Microsoft Internet Explorer **/
|
|
/** Copyright (C) Microsoft Corp., 1997 **/
|
|
/*****************************************************************/
|
|
|
|
/* INITSTR -- Initialize string library
|
|
*
|
|
* History:
|
|
* 08/11/97 gregj Created
|
|
*/
|
|
|
|
#include "npcommon.h"
|
|
|
|
BOOL fDBCSEnabled = FALSE;
|
|
|
|
void WINAPI InitStringLibrary(void)
|
|
{
|
|
::fDBCSEnabled = ::GetSystemMetrics(SM_DBCSENABLED);
|
|
}
|