mirror of
https://github.com/reactos/reactos.git
synced 2024-10-29 19:13:58 +00:00
8f3b3eb6e2
Add tests for GetPrintProcessorDirectoryA and another one for GetPrintProcessorDirectoryW. Tested against Windows Server 2003 SP2. Step 1 for CORE-12399 svn path=/trunk/; revision=73238
37 lines
1.2 KiB
C
37 lines
1.2 KiB
C
/*
|
|
* PROJECT: ReactOS Print Spooler DLL API Tests
|
|
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation
|
|
* PURPOSE: Test list
|
|
* COPYRIGHT: Copyright 2015-2016 Colin Finck <colin@reactos.org>
|
|
*/
|
|
|
|
#define __ROS_LONG64__
|
|
|
|
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_ClosePrinter(void);
|
|
extern void func_EnumPrinters(void);
|
|
extern void func_EnumPrintProcessorDatatypes(void);
|
|
extern void func_GetPrintProcessorDirectoryA(void);
|
|
extern void func_GetPrintProcessorDirectoryW(void);
|
|
extern void func_IsValidDevmodeA(void);
|
|
extern void func_IsValidDevmodeW(void);
|
|
extern void func_OpenPrinter(void);
|
|
extern void func_StartDocPrinter(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "ClosePrinter", func_ClosePrinter },
|
|
{ "EnumPrinters", func_EnumPrinters },
|
|
{ "EnumPrintProcessorDatatypes", func_EnumPrintProcessorDatatypes },
|
|
{ "GetPrintProcessorDirectoryA", func_GetPrintProcessorDirectoryA },
|
|
{ "GetPrintProcessorDirectoryW", func_GetPrintProcessorDirectoryW },
|
|
{ "IsValidDevmodeA", func_IsValidDevmodeA },
|
|
{ "IsValidDevmodeW", func_IsValidDevmodeW },
|
|
{ "OpenPrinter", func_OpenPrinter },
|
|
{ "StartDocPrinter", func_StartDocPrinter },
|
|
|
|
{ 0, 0 }
|
|
};
|