From a7c26122c22094503f1ae64651507b4c733f0487 Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Thu, 24 Nov 2005 19:23:00 +0100 Subject: [PATCH] extern "C" wrappers for usp10.h. --- include/usp10.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/usp10.h b/include/usp10.h index 886a7c1aef6..e38b894a7b7 100644 --- a/include/usp10.h +++ b/include/usp10.h @@ -19,6 +19,10 @@ #ifndef __USP10_H #define __USP10_H +#ifdef __cplusplus +extern "C" { +#endif + /** ScriptStringAnalyse */ #define SSA_PASSWORD 0x00000001 #define SSA_TAB 0x00000002 @@ -160,4 +164,8 @@ HRESULT WINAPI ScriptStringAnalyse(HDC hdc, HRESULT WINAPI ScriptStringFree(SCRIPT_STRING_ANALYSIS *pssa); HRESULT WINAPI ScriptIsComplex(const WCHAR* pwcInChars, int cInChars, DWORD dwFlags); +#ifdef __cplusplus +} /* extern "C" */ +#endif + #endif /* __USP10_H */