From 99f979d6e9bd5c8f668e709754827fb99a8a3f80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Mon, 20 Jan 2020 17:56:44 +0100 Subject: [PATCH] [WIN32SS] Replace inline by FORCEINLINE, as in other files of the module --- win32ss/user/rtl/text.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32ss/user/rtl/text.c b/win32ss/user/rtl/text.c index 6456065b5da..061e49b6d5e 100644 --- a/win32ss/user/rtl/text.c +++ b/win32ss/user/rtl/text.c @@ -332,7 +332,7 @@ static void TEXT_PathEllipsify (HDC hdc, WCHAR *str, unsigned int max_len, } /* Check the character is Chinese, Japanese, Korean and/or Thai */ -inline BOOL IsCJKT(WCHAR wch) +FORCEINLINE BOOL IsCJKT(WCHAR wch) { if (0x0E00 <= wch && wch <= 0x0E7F) return TRUE; /* Thai */