1 /*
2  * PROJECT:     ReactOS Local Spooler API Tests
3  * LICENSE:     GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
4  * PURPOSE:     Shared definitions for the test program and the test DLL
5  * COPYRIGHT:   Copyright 2015 Colin Finck (colin@reactos.org)
6  */
7 
8 #ifndef _LOCALSPL_APITEST_H
9 #define _LOCALSPL_APITEST_H
10 
11 #define COMMAND_PIPE_NAME       L"\\\\.\\pipe\\localspl_apitest_command_pipe"
12 #define OUTPUT_PIPE_NAME        L"\\\\.\\pipe\\localspl_apitest_output_pipe"
13 #define SERVICE_NAME            L"localspl_apitest_service"
14 
15 typedef BOOL (WINAPI *PInitializePrintProvidor)(LPPRINTPROVIDOR, DWORD, LPWSTR);
16 
17 #endif