2015-06-05 15:52:39 +00:00
|
|
|
/*
|
2017-09-29 18:33:04 +00:00
|
|
|
* PROJECT: ReactOS Spooler Router API Tests
|
|
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
2015-06-05 15:52:39 +00:00
|
|
|
* PURPOSE: Test list
|
2018-01-17 09:13:25 +00:00
|
|
|
* COPYRIGHT: Copyright 2015-2018 Colin Finck (colin@reactos.org)
|
2015-06-05 15:52:39 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#define __ROS_LONG64__
|
|
|
|
|
|
|
|
#define STANDALONE
|
|
|
|
#include <apitest.h>
|
|
|
|
|
2017-04-13 16:48:40 +00:00
|
|
|
extern void func_AlignRpcPtr(void);
|
2018-01-17 09:13:25 +00:00
|
|
|
extern void func_MarshallDownStructuresArray(void);
|
|
|
|
extern void func_MarshallUpStructuresArray(void);
|
2015-06-05 15:52:39 +00:00
|
|
|
extern void func_PackStrings(void);
|
2015-06-09 13:22:25 +00:00
|
|
|
extern void func_ReallocSplStr(void);
|
2015-06-06 12:32:30 +00:00
|
|
|
extern void func_SplInitializeWinSpoolDrv(void);
|
2015-06-05 15:52:39 +00:00
|
|
|
|
|
|
|
const struct test winetest_testlist[] =
|
|
|
|
{
|
2017-04-13 16:48:40 +00:00
|
|
|
{ "AlignRpcPtr", func_AlignRpcPtr },
|
2018-01-17 09:13:25 +00:00
|
|
|
{ "MarshallDownStructuresArray", func_MarshallDownStructuresArray },
|
|
|
|
{ "MarshallUpStructuresArray", func_MarshallUpStructuresArray },
|
2015-06-05 15:52:39 +00:00
|
|
|
{ "PackStrings", func_PackStrings },
|
2015-06-09 13:22:25 +00:00
|
|
|
{ "ReallocSplStr", func_ReallocSplStr },
|
2015-06-06 12:32:30 +00:00
|
|
|
{ "SplInitializeWinSpoolDrv", func_SplInitializeWinSpoolDrv },
|
2015-06-05 15:52:39 +00:00
|
|
|
|
|
|
|
{ 0, 0 }
|
|
|
|
};
|