[RTL][NTOS_VISTA] Move the RTL UTF8 functions to the main RTL library, to be linked in the rtl_vista target instead.

The reason is that both RtlUTF8ToUnicodeN() and RtlUnicodeToUTF8N() are
exported in both kernel and user-mode (ntdll) in Windows 7+.

Conversion from and to UTF8 are fundamental enough that they indeed
deserve to be in a separate file.
This commit is contained in:
Hermès Bélusca-Maïto 2022-03-21 01:14:28 +01:00
parent fe452a1dad
commit 6f559e9c54
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
4 changed files with 16 additions and 13 deletions

View file

@ -116,7 +116,7 @@ list(APPEND SOURCE_VISTA
condvar.c
runonce.c
srw.c
)
utf8.c)
add_library(rtl_vista ${SOURCE_VISTA})
add_pch(rtl_vista rtl_vista.h SOURCE_VISTA)