mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
9b29c6967f
Add tests for GetDeviceDriverBaseName Replace 0x00000000 -> NULL. Dedicated to Thomas ;-) svn path=/trunk/; revision=60601
17 lines
392 B
C
17 lines
392 B
C
#define __ROS_LONG64__
|
|
|
|
#define STANDALONE
|
|
#include <wine/test.h>
|
|
|
|
extern void func_GetDeviceDriverFileName(void);
|
|
extern void func_GetDeviceDriverBaseName(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "GetDeviceDriverFileName", func_GetDeviceDriverFileName },
|
|
{ "GetDeviceDriverBaseName", func_GetDeviceDriverBaseName },
|
|
|
|
{ 0, 0 }
|
|
};
|
|
|