This file is indexed.

/usr/include/xview_private/wmgr_decor.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
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
/*	@(#)wmgr_decor.h 1.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 _wmgr_decor_h_already_included
#define _wmgr_decor_h_already_included

#include <X11/Xlib.h>

#define		WM_MAX_DECOR		6

typedef struct {
	long flags;
	enum {
		MENU_FULL = 0,		/* Close, Zoom, Props, Scale, Back,
					 * Refresh, Quit
					 */
		MENU_LIMITED = 1,	/* Dismiss, Scale, Refresh */
		MENU_DISMISS_ONLY = 2,	/* Dismiss */
	} menu_type;
	int pushpin_initial_state;	/* WMDontStayUp or WMStayUp */
} WMDecorations;


typedef struct {			/* old _OL_WIN_ATTR format */
    	Atom	win_type;
    	Atom	menu_type;
    	Atom	pin_initial_state;	
} WM_Win_Type_Old;

typedef struct {			/* new _OL_WIN_ATTR format */
	int	flags;
    	Atom	win_type;
    	Atom	menu_type;
    	int	pin_initial_state;	
	int	cancel;
} WM_Win_Type;

/*
 * Values for flags in new OL_WIN_ATTR property
 */
#define WMWinType      (1<<0)
#define WMMenuType     (1<<1)
#define WMPinState     (1<<2)
#define WMCancel       (1<<3)

/* value for flags */
#define WMDecorationHeader	(1L<<0)
#define WMDecorationFooter	(1L<<1)
#define WMDecorationPushPin	(1L<<2)
#define WMDecorationCloseButton	(1L<<3)
#define WMDecorationOKButton	(1L<<4)
#define WMDecorationResizeable	(1L<<5)

/* value for pushpin_initial_state */
#ifndef WMPushpinIsOut
#define WMPushpinIsOut	0
#endif /* WMPushpinIsOut */
#ifndef WMPushpinIsIn
#define WMPushpinIsIn	1
#endif /* WMPushpinIsIn */

/* value for WM_WINDOW_BUSY property */
#define WMWindowNotBusy	0
#define WMWindowIsBusy	1

#endif /* _wmgr_decor_h_already_included */