Reactos
1
2#define STANDALONE
3#include <wine/test.h>
4
5extern void func_GetDeviceDriverFileName(void);
6extern void func_GetDeviceDriverBaseName(void);
7
8const struct test winetest_testlist[] =
9{
10 { "GetDeviceDriverFileName", func_GetDeviceDriverFileName },
11 { "GetDeviceDriverBaseName", func_GetDeviceDriverBaseName },
12
13 { 0, 0 }
14};
15