mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 04:37:32 +00:00
17 lines
615 B
C
17 lines
615 B
C
/*
|
|
* PROJECT: ReactOS Local Spooler API Tests
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
|
* PURPOSE: Shared definitions for the test program and the test DLL
|
|
* COPYRIGHT: Copyright 2015 Colin Finck (colin@reactos.org)
|
|
*/
|
|
|
|
#ifndef _LOCALSPL_APITEST_H
|
|
#define _LOCALSPL_APITEST_H
|
|
|
|
#define COMMAND_PIPE_NAME L"\\\\.\\pipe\\localspl_apitest_command_pipe"
|
|
#define OUTPUT_PIPE_NAME L"\\\\.\\pipe\\localspl_apitest_output_pipe"
|
|
#define SERVICE_NAME L"localspl_apitest_service"
|
|
|
|
typedef BOOL (WINAPI *PInitializePrintProvidor)(LPPRINTPROVIDOR, DWORD, LPWSTR);
|
|
|
|
#endif |