1 /*
2  * PROJECT:     ReactOS Standard Print Processor API Tests
3  * LICENSE:     GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
4  * PURPOSE:     Test list
5  * COPYRIGHT:   Copyright 2015-2016 Colin Finck (colin@reactos.org)
6  */
7 
8 /*
9  * These tests are developed and tested against the Windows Server 2003 counterpart of winprint.
10  * While ReactOS implements the Standard Print Processor in a separate module winprint.dll,
11  * Windows Server 2003 puts it into the Local Print Spooler localspl.dll.
12  *
13  * winspool.drv also provides functions that go into winprint.dll, but as these tests show,
14  * they behave slightly different in terms of error codes due to the involved RPC and routing.
15  */
16 
17 #define __ROS_LONG64__
18 
19 #define STANDALONE
20 #include <apitest.h>
21 
22 extern void func_EnumPrintProcessorDatatypesW(void);
23 
24 const struct test winetest_testlist[] =
25 {
26     { "EnumPrintProcessorDatatypesW", func_EnumPrintProcessorDatatypesW },
27 
28     { 0, 0 }
29 };
30