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