src/hb-uniscribe.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 757a7a9018577dcc399be03dc45a59589585d2fb Author: Behdad Esfahbod <[email protected]> Date: Wed Aug 28 12:35:13 2013 -0400 [uniscribe] Fixed build with wide chars https://github.com/blinkseb/harfbuzz/commit/f65dafa4138e1fb4395bf646fa33bb01a86a7e9a diff --git a/src/hb-uniscribe.cc b/src/hb-uniscribe.cc index 2bda0bc..65a63f3 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"); _______________________________________________ HarfBuzz mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/harfbuzz
