This file is indexed.

/usr/share/doc/xviewg/examples/extensions/logo_impl.h is in xview-examples 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
/* logo_impl.h -- implementation-dependent header file for the
 * logo XView class.
 */
#include "logo.h"

typedef struct {
    Xv_object	public_self;	/* pointer back to self */
    GC		gc;		/* GC to render logo */
    Pixmap	bitmap;		/* xlogo bitmap */
} Logo_private;

#define LOGO_PUBLIC(item)	XV_PUBLIC(item)
#define LOGO_PRIVATE(item)	XV_PRIVATE(Logo_private, Logo_public, item)