/usr/include/pixrect/pr_impl_make.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 | /* @(#)pr_impl_make.h 1.2 88/02/08 SMI */
#ifndef pr_impl_make_DEFINED
#define pr_impl_make_DEFINED
/*
* Copyright 1987 by Sun Microsystems, Inc.
*/
/*
* Pr_devdata is used to keep track of the mmapped virtual
* address of a device to prevent mapping more than once.
*/
struct pr_devdata {
struct pr_devdata *next; /* link to next device of this type */
dev_t rdev; /* device type */
int count; /* reference count */
int fd; /* fd of frame buffer, -1 if unused */
caddr_t va; /* virtual address */
int bytes; /* size of va, 0 for no munmap */
caddr_t va2; /* second virtual address, 0 if unused */
int bytes2; /* second size */
};
#ifndef KERNEL
Pixrect *pr_makefromfd();
Pixrect *pr_makefromfd_2();
#endif /* !KERNEL */
#endif /* pr_impl_make_DEFINED */
|