[ADVAPI32_APITEST]

- Add a test for calling RegQueryInfoKey with different access rights
CORE-9719

svn path=/trunk/; revision=67848
This commit is contained in:
Thomas Faber 2015-05-22 15:47:02 +00:00
parent ac3616d42c
commit 9600755aaa
3 changed files with 80 additions and 1 deletions

View file

@ -9,6 +9,7 @@ extern void func_HKEY_CLASSES_ROOT(void);
extern void func_LockDatabase(void);
extern void func_QueryServiceConfig2(void);
extern void func_RegEnumValueW(void);
extern void func_RegQueryInfoKey(void);
extern void func_RtlEncryptMemory(void);
extern void func_SaferIdentifyLevel(void);
@ -19,7 +20,8 @@ const struct test winetest_testlist[] =
{ "HKEY_CLASSES_ROOT", func_HKEY_CLASSES_ROOT },
{ "LockDatabase" , func_LockDatabase },
{ "QueryServiceConfig2", func_QueryServiceConfig2 },
{ "RegEnumValueW", func_RegEnumValueW},
{ "RegEnumValueW", func_RegEnumValueW },
{ "RegQueryInfoKey", func_RegQueryInfoKey },
{ "RtlEncryptMemory", func_RtlEncryptMemory },
{ "SaferIdentifyLevel", func_SaferIdentifyLevel },