mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
b8329db06a
Add service tag tests. Patch by Thomas Faber. svn path=/trunk/; revision=53873
16 lines
260 B
C
16 lines
260 B
C
#define WIN32_LEAN_AND_MEAN
|
|
#define __ROS_LONG64__
|
|
#include <windows.h>
|
|
|
|
#define STANDALONE
|
|
#include "wine/test.h"
|
|
|
|
extern void func_CreateService(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "CreateService", func_CreateService },
|
|
|
|
{ 0, 0 }
|
|
};
|
|
|