18 Feb
2026
18 Feb
'26
5:29 p.m.
From: Jacek Caban <jacek@codeweavers.com> --- include/msvcrt/wchar.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/include/msvcrt/wchar.h b/include/msvcrt/wchar.h index ac0dad36a4b..9a421dc341b 100644 --- a/include/msvcrt/wchar.h +++ b/include/msvcrt/wchar.h @@ -91,6 +91,16 @@ static inline wchar_t* __cdecl wmemset(wchar_t *s, wchar_t c, size_t n) return s; } +static inline int __cdecl fwide(FILE *file, int mode) +{ + return mode; +} + +static inline int __cdecl mbsinit(const mbstate_t *state) +{ + return !state || !*state; +} + #ifdef __cplusplus } #endif -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/10129