1 /*
2  * PROJECT:     ReactOS netapi32.dll API Tests
3  * LICENSE:     GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
4  * PURPOSE:     Test list
5  * COPYRIGHT:   Copyright 2017 Colin Finck (colin@reactos.org)
6  */
7 
8 #define __ROS_LONG64__
9 
10 #define STANDALONE
11 #include <apitest.h>
12 
13 extern void func_DsRoleGetPrimaryDomainInformation(void);
14 
15 const struct test winetest_testlist[] =
16 {
17     { "DsRoleGetPrimaryDomainInformation", func_DsRoleGetPrimaryDomainInformation },
18 
19     { 0, 0 }
20 };
21