[PRINTING]
[reactos.git] / rostests / apitests / winprint / testlist.c
1 /*
2 * PROJECT: ReactOS Standard Print Processor API Tests
3 * LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation
4 * PURPOSE: Test list
5 * COPYRIGHT: Copyright 2015 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 * To test against Windows, simply run these tests under Windows Server 2003, but copy its
14 * localspl.dll to winprint.dll in advance.
15 *
16 * winspool.drv also provides functions that go into winprint.dll, but as these tests show,
17 * they behave slightly different in terms of error codes due to the involved RPC and routing.
18 */
19
20 #define __ROS_LONG64__
21
22 #define STANDALONE
23 #include <apitest.h>
24
25 extern void func_EnumPrintProcessorDatatypesW(void);
26
27 const struct test winetest_testlist[] =
28 {
29 { "EnumPrintProcessorDatatypesW", func_EnumPrintProcessorDatatypesW },
30
31 { 0, 0 }
32 };