[VERSION_APITEST] Add tests for VerQueryValue(A/W)

This commit is contained in:
Timo Kreuzer 2024-10-10 14:54:03 +03:00
parent eafa7c68b6
commit 8c2b8c835a
5 changed files with 354 additions and 0 deletions

View file

@ -0,0 +1,18 @@
/*
* PROJECT: ReactOS API Tests
* LICENSE: MIT (https://spdx.org/licenses/MIT)
* PURPOSE: Tests for version.dll
* COPYRIGHT: Copyright 2024 Timo Kreuzer <timo.kreuzer@reactos.org>
*/
#define STANDALONE
#include <apitest.h>
extern void func_VerQueryValue(void);
const struct test winetest_testlist[] =
{
{ "VerQueryValue", func_VerQueryValue },
{ 0, 0 }
};