[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

@ -1,7 +1,7 @@
/* Taken from Wine ntdll/sync.c */
#include "rtl_vista.h"
#include <rtl_vista.h>
#include <wine/config.h>
#include <wine/port.h>