This file is indexed.

/usr/include/xview_private/scrn_vis.h is in xviewg-dev 3.2p1.4-28.1.

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
/*	@(#)scrn_vis.h 20.17 93/06/28 SMI	*/

/****************************************************************************/
/*	
 *	(c) Copyright 1989 Sun Microsystems, Inc. Sun design patents 
 *	pending in the U.S. and foreign countries. See LEGAL_NOTICE 
 *	file for terms of the license. 
 */
/****************************************************************************/

#ifndef _xview_screen_visual_h_already_included
#define _xview_screen_visual_h_already_included

#include <xview/base.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>

typedef struct screen_visual {
    Xv_object		screen;
    Xv_object		server;
    Display	       *display;
    Xv_object		root_window;
    XVisualInfo        *vinfo;
    unsigned int	depth;
    Xv_opaque		colormaps;	/* List of colormaps to use with this visual (first is the default) */
    GC			gc;
    XImage	       *image_bitmap;
    XImage	       *image_pixmap;
    struct screen_visual *next;
} Screen_visual;

#endif

/* Functions defined in scrn_vis.c */
Pkg_private Screen_visual *screen_get_visual();
Pkg_private Screen_visual *screen_get_image_visual();
Pkg_private Screen_visual *screen_new_visual();