mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
29 lines
911 B
C
29 lines
911 B
C
/*
|
|
* PROJECT: ReactOS Spooler Router API Tests
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
|
* PURPOSE: Test list
|
|
* COPYRIGHT: Copyright 2015-2018 Colin Finck ([email protected])
|
|
*/
|
|
|
|
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_AlignRpcPtr(void);
|
|
extern void func_MarshallDownStructuresArray(void);
|
|
extern void func_MarshallUpStructuresArray(void);
|
|
extern void func_PackStrings(void);
|
|
extern void func_ReallocSplStr(void);
|
|
extern void func_SplInitializeWinSpoolDrv(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "AlignRpcPtr", func_AlignRpcPtr },
|
|
{ "MarshallDownStructuresArray", func_MarshallDownStructuresArray },
|
|
{ "MarshallUpStructuresArray", func_MarshallUpStructuresArray },
|
|
{ "PackStrings", func_PackStrings },
|
|
{ "ReallocSplStr", func_ReallocSplStr },
|
|
{ "SplInitializeWinSpoolDrv", func_SplInitializeWinSpoolDrv },
|
|
|
|
{ 0, 0 }
|
|
};
|