ReactOS 0.4.16-dev-1946-g52006dd
testlist.c
Go to the documentation of this file.
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 STANDALONE
18#include <apitest.h>
19
21
22const struct test winetest_testlist[] =
23{
24 { "EnumPrintProcessorDatatypesW", func_EnumPrintProcessorDatatypesW },
25
26 { 0, 0 }
27};
#define test
Definition: rosglue.h:37
const struct test winetest_testlist[]
Definition: testlist.c:7
void func_EnumPrintProcessorDatatypesW(void)