Add test for RtlDosPathNameToNtPathName_U.

svn path=/trunk/; revision=57373
This commit is contained in:
Mike Nordell 2012-09-24 12:17:04 +00:00
parent e79e0dea55
commit 83ec1cb161
2 changed files with 3 additions and 0 deletions

View file

@ -5,6 +5,7 @@ list(APPEND SOURCE
RtlBitmap.c
RtlDetermineDosPathNameType.c
RtlDoesFileExists.c
RtlDosPathNameToNtPathName_U.c
RtlDosSearchPath_U.c
RtlDosSearchPath_Ustr.c
RtlGetFullPathName_U.c

View file

@ -11,6 +11,7 @@ extern void func_NtSystemInformation(void);
extern void func_RtlBitmap(void);
extern void func_RtlDetermineDosPathNameType(void);
extern void func_RtlDoesFileExists(void);
extern void func_RtlDosPathNameToNtPathName_U(void);
extern void func_RtlDosSearchPath_U(void);
extern void func_RtlDosSearchPath_Ustr(void);
extern void func_RtlGetFullPathName_U(void);
@ -28,6 +29,7 @@ const struct test winetest_testlist[] =
{ "RtlBitmapApi", func_RtlBitmap },
{ "RtlDetermineDosPathNameType", func_RtlDetermineDosPathNameType },
{ "RtlDoesFileExists", func_RtlDoesFileExists },
{ "RtlDosPathNameToNtPathName_U", func_RtlDosPathNameToNtPathName_U },
{ "RtlDosSearchPath_U", func_RtlDosSearchPath_U },
{ "RtlDosSearchPath_Ustr", func_RtlDosSearchPath_Ustr },
{ "RtlGetFullPathName_U", func_RtlGetFullPathName_U },