/usr/include/xview_private/path_impl.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 | /* @(#)path_impl.h 1.7 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.
*/
#include <xview_private/xv_path_util.h>
#include <xview/path.h>
typedef struct {
Xv_opaque public_self;
Frame frame;
Panel_setting (* client_notify)();
char * valid_path; /* last valid path name seen */
char * relative; /* accept paths relative to this one */
int notify_status; /* notify proc succeeded or failed */
unsigned is_directory : 1; /* allow file or dir names */
unsigned use_frame : 1; /* put messages in frame */
unsigned new_file : 1; /* allow new file name */
#ifdef OW_I18N
wchar_t * valid_path_wcs;
wchar_t * relative_wcs;
#endif /* OW_I18N */
} Path_private;
#define PATH_PUBLIC(item) XV_PUBLIC(item)
#define PATH_PRIVATE(item) XV_PRIVATE(Path_private, Path_public, item)
|