Files
Arquivotheca.SunOS-4.1.4/usr.lib/libsunwindow/include/sunwindow/cms_mono.h
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

21 lines
433 B
C

/* @(#)cms_mono.h 1.1 94/10/31 SMI */
/*
* Copyright (c) 1983 by Sun Microsystems, Inc.
*/
/*
* Definition of the colormap segment CMS_MONOCHROME,
* a black and white color map segment.
*/
#define CMS_MONOCHROME "monochrome"
#define CMS_MONOCHROMESIZE 2
#define WHITE 0
#define BLACK 1
#define cms_monochromeload(r,g,b) \
(r)[WHITE] = -1;(g)[WHITE] = -1;(b)[WHITE] = -1; \
(r)[BLACK] = 0;(g)[BLACK] = 0;(b)[BLACK] = 0;