/usr/include/pixrect/pr_dblbuf.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 | /* @(#)pr_dblbuf.h 1.7 90/08/31 SMI */
/*
* Copyright 1986 by Sun Microsystems, Inc.
*/
#ifndef pr_dblbuf_DEFINED
#define pr_dblbuf_DEFINED
/* Attributes
Unless otherwise indicated, attributes can be used for gets and sets.
*/
#define PR_DBL_AVAIL 1 /* AVAIL is get only. */
#define PR_DBL_DISPLAY 2
#define PR_DBL_WRITE 3
#define PR_DBL_READ 4
#define PR_DBL_DISPLAY_DONTBLOCK 5
/* Similar to PR_DBL_DISPLAY, but DONTBLOCK is for set only. */
#define PR_DBL_DEPTH 6 /* get only attribute */
#define PR_DBL_WID 7 /* does wid allow multiple double buffering */
#define PR_DBL_AVAIL_PG 8 /* Avail for a given plane group (get only) */
/* Attribute values:
*/
#define PR_DBL_EXISTS 1 /* Value for AVAIL only */
#define PR_DBL_A 2
#define PR_DBL_B 3
#define PR_DBL_BOTH 4 /* for PR_DBL_WRITE only. */
#define PR_DBL_NONE 5
/* can only be returned by pr_dbl_get with PR_DBL_WRITE attribute. */
#endif /* pr_dblbuf_DEFINED */
|