https://git.reactos.org/?p=reactos.git;a=commitdiff;h=99f979d6e9bd5c8f668e70...
commit 99f979d6e9bd5c8f668e709754827fb99a8a3f80 Author: Hervé Poussineau hpoussin@reactos.org AuthorDate: Mon Jan 20 17:56:44 2020 +0100 Commit: Hervé Poussineau hpoussin@reactos.org CommitDate: Wed Jan 22 20:57:42 2020 +0100
[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 */