[LOCALSPL] Fix parameter handling in LocalSetJob and add tests for the few ways we...
[reactos.git] / modules / rostests / apitests / localspl / testlist.c
1 /*
2 * PROJECT: ReactOS Local Spooler API Tests
3 * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
4 * PURPOSE: Test list
5 * COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
6 */
7
8 #define __ROS_LONG64__
9
10 #define STANDALONE
11 #include <apitest.h>
12
13 extern void func_fpEnumPrinters(void);
14 extern void func_fpGetPrintProcessorDirectory(void);
15 extern void func_fpSetJob(void);
16 extern void func_service(void);
17
18 const struct test winetest_testlist[] =
19 {
20 { "fpEnumPrinters", func_fpEnumPrinters },
21 { "fpGetPrintProcessorDirectory", func_fpGetPrintProcessorDirectory },
22 { "fpSetJob", func_fpSetJob },
23 { "service", func_service },
24
25 { 0, 0 }
26 };