[SHIMENG] Find shims case-insensitive

CORE-15845
This commit is contained in:
Mark Jansen 2019-03-11 22:46:18 +01:00
parent cdc8b721da
commit 0ebeced143
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B
4 changed files with 14 additions and 5 deletions

View file

@ -53,6 +53,15 @@ static expect_shim_data data[] =
{ "KERNEL32.DLL", "VerifyVersionInfoW" },
}
},
/* Show that it is not case sensitive */
{
L"VeRiFyVeRsIoNInFoLiTe",
0,
{
{ "KERNEL32.DLL", "VerifyVersionInfoA" },
{ "KERNEL32.DLL", "VerifyVersionInfoW" },
}
},
};
static DWORD count_shims(expect_shim_data* data)