2015-06-05 15:52:39 +00:00
|
|
|
/*
|
|
|
|
* PROJECT: ReactOS Print Spooler Router API Tests
|
|
|
|
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation
|
|
|
|
* PURPOSE: Test list
|
|
|
|
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define __ROS_LONG64__
|
|
|
|
|
|
|
|
#define STANDALONE
|
|
|
|
#include <apitest.h>
|
|
|
|
|
|
|
|
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[] =
|
|
|
|
{
|
|
|
|
{ "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 }
|
|
|
|
};
|