mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 04:37:32 +00:00
21 lines
474 B
C
21 lines
474 B
C
/*
|
|
* PROJECT: ReactOS netapi32.dll API Tests
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
|
* PURPOSE: Test list
|
|
* COPYRIGHT: Copyright 2017 Colin Finck (colin@reactos.org)
|
|
*/
|
|
|
|
#define __ROS_LONG64__
|
|
|
|
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_DsRoleGetPrimaryDomainInformation(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "DsRoleGetPrimaryDomainInformation", func_DsRoleGetPrimaryDomainInformation },
|
|
|
|
{ 0, 0 }
|
|
};
|