/usr/include/xview/win_struct.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 | /* @(#)win_struct.h 20.12 93/06/28 SMI */
#ifndef xview_win_struct_DEFINED
#define xview_win_struct_DEFINED
/*
* (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.
*/
/*
***********************************************************************
* Definitions and Macros
***********************************************************************
*/
/*
* PUBLIC #defines
*/
/* Host name maximum size is 31 + 1 for colon + 2 for display number
* + 10 for xid + 1 for null.
*/
#define WIN_NAMESIZE 45
/*
* Link names.
*/
#define WL_PARENT 0
#define WL_OLDERSIB 1
#define WL_YOUNGERSIB 2
#define WL_OLDESTCHILD 3
#define WL_YOUNGESTCHILD 4
#define WL_ENCLOSING WL_PARENT
#define WL_COVERED WL_OLDERSIB
#define WL_COVERING WL_YOUNGERSIB
#define WL_BOTTOMCHILD WL_OLDESTCHILD
#define WL_TOPCHILD WL_YOUNGESTCHILD
#define WIN_NULLLINK -1
#endif /* ~xview_win_struct_DEFINED */
|