/usr/include/pixrect/bw2var.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 | /* @(#)bw2var.h 1.11 88/02/08 SMI */
/*
* Copyright (c) 1986 by Sun Microsystems, Inc.
*/
#ifndef bw2var_DEFINED
#define bw2var_DEFINED
/*
* bw2 -- monochrome frame buffer
*/
/* standard resolution */
#define BW2SIZEX 1152
#define BW2SIZEY 900
#define BW2BYTES (BW2SIZEX*BW2SIZEY/8)
#define BW2SQUARESIZEX 1024
#define BW2SQUARESIZEY 1024
#define BW2SQUAREBYTES (BW2SQUARESIZEX*BW2SQUARESIZEY/8)
/* high resolution (bw2h) */
#define BW2HSIZEX 1600
#define BW2HSIZEY 1280
#define BW2HBYTES (BW2HSIZEX*BW2HSIZEY/8)
#define BW2HSQUARESIZEX 1440
#define BW2HSQUARESIZEY 1440
#define BW2HSQUAREBYTES (BW2HSQUARESIZEX*BW2HSQUARESIZEY/8)
extern struct pixrectops bw2_ops;
#ifndef KERNEL
struct pixrect *bw2_make();
int bw2_destroy();
#endif
#endif /* bw2var_DEFINED */
|