reactos/rostests/apitests/netapi32/testlist.c
Colin Finck e5654cce9f [NETAPI32_APITEST]
Add a simple API Test for netapi32.dll, only covering DsRoleGetPrimaryDomainInformation so far.
It succeeds in ReactOS, but outputs a heap error in the debug log. In real world applications, this later leads to a heap assertion failure.

svn path=/trunk/; revision=75208
2017-06-26 15:19:07 +00:00

21 lines
504 B
C

/*
* PROJECT: ReactOS netapi32.dll API Tests
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation
* 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 }
};