/usr/include/pixrect/mem32_var.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 | /* @(#)mem32_var.h 1.2 90/07/27 SMI */
/* Copyright 1990 Sun Microsystems, Inc. */
/* pixrect data for 8 bit emulation in 24/32 bit memory pixrect */
#ifndef mem32var_DEFINED
#define mem32var_DEFINED
#include <pixrect/pixrect.h>
#include <pixrect/memvar.h> /* mprp */
#ifndef SVR4
#include <sunwindow/cms.h> /* colormapseg */
#else
#include <sys/cms.h>
#endif /* SVR4 */
#define MEM32_8BIT_CMAPSIZE 256
struct mprp32_data
{
struct mprp_data mprp;
int plane_group;
int fd;
int windowfd;
struct colormapseg cms;
};
#define mprp32_d(pr) ((struct mprp32_data *) (pr)->pr_data)
#ifndef KERNEL
extern
struct pixrectops mem32_ops;
int mem32_rop();
int mem32_getcolormap();
#endif /* !KERNEL */
#endif /* !mem32var_DEFINED */
|