mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 11:35:58 +00:00
23 lines
513 B
C
23 lines
513 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 Colin Finck <colin@reactos.org>
|
||
|
*/
|
||
|
|
||
|
#define __ROS_LONG64__
|
||
|
|
||
|
#define STANDALONE
|
||
|
#include <apitest.h>
|
||
|
|
||
|
extern void func_fpEnumPrinters(void);
|
||
|
extern void func_service(void);
|
||
|
|
||
|
const struct test winetest_testlist[] =
|
||
|
{
|
||
|
{ "fpEnumPrinters", func_fpEnumPrinters },
|
||
|
{ "service", func_service },
|
||
|
|
||
|
{ 0, 0 }
|
||
|
};
|