1 /*
2  * PROJECT:     ReactOS API Tests
3  * LICENSE:     LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
4  * PURPOSE:     Test list for the ISA PnP bus driver
5  * COPYRIGHT:   Copyright 2024 Dmitry Borisov <di.sean@protonmail.com>
6  */
7 
8 #define STANDALONE
9 #include <apitest.h>
10 
11 extern void func_Resources(void);
12 
13 const struct test winetest_testlist[] =
14 {
15     { "Resources", func_Resources },
16     { 0, 0 }
17 };
18