reactos/rostests/apitests/advapi32/testlist.c
Thomas Faber bd748a0cd3 [ADVAPI32_APITEST]
- Add test for QueryServiceConfig2 with SERVICE_CONFIG_DESCRIPTION and SERVICE_CONFIG_FAILURE_ACTIONS. Patch by Hermes Belusca.
- Remove ok_lasterr in favor of ok_err.
See issue #7144 for more details.

svn path=/trunk/; revision=56809
2012-06-27 14:55:22 +00:00

19 lines
361 B
C

#define WIN32_LEAN_AND_MEAN
#define __ROS_LONG64__
#include <windows.h>
#define STANDALONE
#include "wine/test.h"
extern void func_CreateService(void);
extern void func_QueryServiceConfig2(void);
const struct test winetest_testlist[] =
{
{ "CreateService", func_CreateService },
{ "QueryServiceConfig2", func_QueryServiceConfig2 },
{ 0, 0 }
};