From 757a7a9018577dcc399be03dc45a59589585d2fb Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Wed, 28 Aug 2013 12:35:13 -0400 Subject: [PATCH] [uniscribe] Fixed build with wide chars https://github.com/blinkseb/harfbuzz/commit/f65dafa4138e1fb4395bf646fa33bb01a86a7e9a --- src/hb-uniscribe.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-uniscribe.cc b/src/hb-uniscribe.cc index 2bda0bc2e..65a63f3be 100644 --- a/src/hb-uniscribe.cc +++ b/src/hb-uniscribe.cc @@ -203,7 +203,7 @@ struct hb_uniscribe_shaper_funcs_t { this->ScriptShapeOpenType = NULL; this->ScriptPlaceOpenType = NULL; - hinstLib = GetModuleHandle("usp10.dll"); + hinstLib = GetModuleHandle (TEXT ("usp10.dll")); if (hinstLib) { this->ScriptItemizeOpenType = (SIOT) GetProcAddress (hinstLib, "ScriptItemizeOpenType");