/usr/include/xview/win_env.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 | /* @(#)win_env.h 20.15 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_win_environ_DEFINED
#define xview_win_environ_DEFINED
#include <xview/xv_c_types.h>
/*
***********************************************************************
* Definitions and Macros
***********************************************************************
*/
/*
* PRIVATE #defines
*/
/*
* The window library uses the ENVIRONMENT to pass a limited amount of
* window information to newly created child processes.
* A collection of conventions dictate the use of these values.
*/
#define WE_PARENT "WINDOW_PARENT"
#define WE_INITIALDATA "WINDOW_INITIALDATA"
#define WE_GFX "WINDOW_GFX"
#define WE_ME "WINDOW_ME"
/*
***********************************************************************
* Globals
***********************************************************************
*/
/*
* C Library routines specifically related to ENVIRONMENT conventions.
*/
/*
* PUBLIC functions
*/
/*
* Get/set window that can be taken over by graphics programs.
*/
#ifdef _OTHER_WIN_ENV_FUNCTIONS
EXTERN_FUNCTION (void we_setgfxwindow, (char *windevname));
EXTERN_FUNCTION (int we_getgfxwindow, (char *windevname));
/*
* PUBLIC functions provided only for
* compatibility with pre-SunView code
*/
/*
* Get/set parent of window that is being created.
*/
EXTERN_FUNCTION (void we_setparentwindow, (char *windevname));
EXTERN_FUNCTION (int we_getparentwindow, (char *windevname));
#endif /* _OTHER_WIN_ENV_FUNCTIONS */
#endif /* ~xview_win_environ_DEFINED */
|