1193c3a7382241833da5993108ed4b8499b31afa
[reactos.git] / rostests / apitests / winspool / testlist.c
1 /*
2 * PROJECT: ReactOS Print Spooler DLL 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 #define __ROS_LONG64__
9
10 #define STANDALONE
11 #include <apitest.h>
12
13 extern void func_ClosePrinter(void);
14 extern void func_EnumPrintProcessorDatatypes(void);
15 extern void func_GetPrintProcessorDirectory(void);
16 extern void func_OpenPrinter(void);
17 extern void func_StartDocPrinter(void);
18
19 const struct test winetest_testlist[] =
20 {
21 { "ClosePrinter", func_ClosePrinter },
22 { "EnumPrintProcessorDatatypes", func_EnumPrintProcessorDatatypes },
23 { "GetPrintProcessorDirectory", func_GetPrintProcessorDirectory },
24 { "OpenPrinter", func_OpenPrinter },
25 { "StartDocPrinter", func_StartDocPrinter },
26
27 { 0, 0 }
28 };