mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 13:02:59 +00:00
[KERNEL32][RTL] Implement One-Time initialization API and improve RTL support (#5046)
* [KERNEL32][RTL] Implement One-Time initialization API and improve RTL support
This commit is contained in:
parent
583be404dd
commit
f491d7cc99
12 changed files with 472 additions and 65 deletions
|
@ -18,6 +18,7 @@ extern void func_GetCurrentDirectory(void);
|
|||
extern void func_GetDriveType(void);
|
||||
extern void func_GetModuleFileName(void);
|
||||
extern void func_GetVolumeInformation(void);
|
||||
extern void func_InitOnce(void);
|
||||
extern void func_interlck(void);
|
||||
extern void func_IsDBCSLeadByteEx(void);
|
||||
extern void func_JapaneseCalendar(void);
|
||||
|
@ -53,6 +54,7 @@ const struct test winetest_testlist[] =
|
|||
{ "GetDriveType", func_GetDriveType },
|
||||
{ "GetModuleFileName", func_GetModuleFileName },
|
||||
{ "GetVolumeInformation", func_GetVolumeInformation },
|
||||
{ "InitOnce", func_InitOnce },
|
||||
{ "interlck", func_interlck },
|
||||
{ "IsDBCSLeadByteEx", func_IsDBCSLeadByteEx },
|
||||
{ "JapaneseCalendar", func_JapaneseCalendar },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue