mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
c71475e3bb
svn path=/trunk/; revision=58290
18 lines
393 B
C
18 lines
393 B
C
#define __ROS_LONG64__
|
|
|
|
#define STANDALONE
|
|
#include <wine/test.h>
|
|
|
|
extern void func_CreateService(void);
|
|
extern void func_LockDatabase(void);
|
|
extern void func_QueryServiceConfig2(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "CreateService", func_CreateService },
|
|
{ "LockDatabase" , func_LockDatabase },
|
|
{ "QueryServiceConfig2", func_QueryServiceConfig2 },
|
|
|
|
{ 0, 0 }
|
|
};
|
|
|