This file is indexed.

/usr/include/ncarg/hlu/PDFWorkstationP.h is in libncarg-dev 6.1.2-7.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
 *  $Id: PDFWorkstationP.h,v 1.3 2010-02-09 23:12:44 brownrig Exp $
 */

# ifndef    _NPDFWorkstationP_h
# define    _NPDFWorkstationP_h

# include   <ncarg/hlu/WorkstationP.h>
# include   <ncarg/hlu/PDFWorkstation.h>

# define    MAX_OPEN_PDF    (1)

/*
 * PDF workstation type identifiers start at 11.
 * Types are: PORTRAIT or LANDSCAPE.
 */
# define    PDFBASE         (11)
# define    PDFPORTRAIT     (11)
# define    PDFLANDSCAPE    (12)

typedef struct _NhlPDFWorkstationLayerPart {
    /* User setable resource fields */

    NhlPDFFormat    format;             /* PDF */
    NhlVisualType   visual;             /* always COLOR */
    NhlWorkOrientation  orientation;    /* PORTRAIT or LANDSCAPE */
    NhlColorModel   color_model;        /* RGB or user defined */

    NhlString   filename;

    int resolution;

    NhlString paper_size;   /* standard paper name, e.g., "legal", "A2", etc. */
    float page_width;       /*  inches  */
    float page_height;      /*    "     */
    int lower_x;
    int lower_y;
    int upper_x;
    int upper_y;

    NhlBoolean  full_background;
    NhlBoolean  suppress_background;
    NhlBoolean  suppress_bbinfo;

    /* Private internal fields */
    NhlBoolean  dev_bounds_updated;

} NhlPDFWorkstationLayerPart;

typedef struct  _NhlPDFWorkstationLayerRec {
    NhlBaseLayerPart    base;
    NhlWorkstationLayerPart     work;
    NhlPDFWorkstationLayerPart  pdf;
} NhlPDFWorkstationLayerRec;

typedef struct  _NhlPDFWorkstationClassPart {
    int foo;
} NhlPDFWorkstationClassPart;

typedef struct  _NhlPDFWorkstationClassRec {
    NhlBaseClassPart    base_class;
    NhlWorkstationClassPart     work_class;
    NhlPDFWorkstationClassPart  pdf_class;
} NhlPDFWorkstationClassRec;

typedef struct _NhlPDFWorkstationLayerRec   *NhlPDFWorkstationLayer;
typedef struct _NhlPDFWorkstationClassRec   *NhlPDFWorkstationClass;

extern NhlPDFWorkstationClassRec    NhlpdfWorkstationClassRec;

# endif /* _NPDFWorkstationP_h */