Coverage Report

Created: 2025-06-24 07:01

/src/ghostpdl/base/gp_nxpsprn.c
Line
Count
Source (jump to first uncovered line)
1
/* Copyright (C) 2001-2023 Artifex Software, Inc.
2
   All Rights Reserved.
3
4
   This software is provided AS-IS with no warranty, either express or
5
   implied.
6
7
   This software is distributed under license and may not be copied,
8
   modified or distributed except as expressly authorized under the terms
9
   of the license contained in the file LICENSE in this distribution.
10
11
   Refer to licensing information at http://www.artifex.com or contact
12
   Artifex Software, Inc.,  39 Mesa Street, Suite 108A, San Francisco,
13
   CA 94129, USA, for further information.
14
*/
15
16
#include "std.h"
17
#include "gp.h"
18
19
/* dummy for when no xps print queue is available */
20
int
21
gp_xpsprint(char *filename, char *printername, int *result)
22
0
{
23
0
    (void)filename;
24
0
    (void)printername;
25
0
    *result = 0;
26
0
    return 0;
27
0
}