mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 14:30:57 +00:00
aa84b232e5
Add a test for fpGetPrintProcessorDirectory, the actual worker function inside localspl.dll at the end of the call chain. With that final test, we should have enough information to implement 100% compatible versions of GetPrintProcessorDirectoryA/W and fpGetPrintProcessorDirectory. [WINSPOOL_APITEST] Initialize some more variables with bogus values to verify that they have actually changed. Next step for CORE-12399 svn path=/trunk/; revision=73264
24 lines
646 B
C
24 lines
646 B
C
/*
|
|
* PROJECT: ReactOS Local Spooler 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_fpEnumPrinters(void);
|
|
extern void func_fpGetPrintProcessorDirectory(void);
|
|
extern void func_service(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "fpEnumPrinters", func_fpEnumPrinters },
|
|
{ "fpGetPrintProcessorDirectory", func_fpGetPrintProcessorDirectory },
|
|
{ "service", func_service },
|
|
|
|
{ 0, 0 }
|
|
};
|