mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
18 lines
403 B
C
18 lines
403 B
C
/*
|
|
* 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 }
|
|
};
|