/usr/include/xview/win_notify.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 | /*
* @(#)win_notify.h 20.16 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.
*/
/*
* SunView related notification definitions (also see notify.h).
*/
#ifndef win_notify_DEFINED
#define win_notify_DEFINED
#include <xview/xv_c_types.h>
/*
***********************************************************************
* Globals
***********************************************************************
*/
/*
* PUBLIC Functions
*/
/*
* Posting of client events to window notifier clients
*/
EXTERN_FUNCTION (Notify_error win_post_id, (Notify_client client, int id, Notify_event_type when));
EXTERN_FUNCTION (Notify_error win_post_id_and_arg, (Notify_client client, int id, Notify_event_type when, Notify_arg arg, Notify_copy copy_func, Notify_release release_func));
EXTERN_FUNCTION (Notify_error win_post_event, ( Notify_client client, Event *event, Notify_event_type when));
EXTERN_FUNCTION (Notify_error win_post_event_arg, ( Notify_client client, Event * event, Notify_event_type when, Notify_arg arg, Notify_copy copy_func, Notify_release release_func));
/*
* Utilities to call if posting with win_post_id_and_arg or win_post_event_arg
*/
EXTERN_FUNCTION (Notify_arg win_copy_event, ( Notify_client client, Notify_arg arg, Event **event_ptr));
EXTERN_FUNCTION (void win_free_event, ( Notify_client client, Notify_arg arg, Event *event));
#endif /* win_notify_DEFINED */
|