File: AAllocColor.c

package info (click to toggle)
acm 5.0-19
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 7,852 kB
  • ctags: 4,792
  • sloc: ansic: 42,427; makefile: 706; cpp: 293; perl: 280; sh: 198
file content (17 lines) | stat: -rwxr-xr-x 351 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <Alib.h>

Status
AAllocColor(AWindow *a, Display *display, Colormap colormap, XColor *c)
{
	Status result;
	result = XAllocColor (display, colormap, c);
	if (result) {
#ifdef X11
		a->color_to_pixel_map[a->color_to_pixel_map_top] = c->pixel;
		c->pixel = a->color_to_pixel_map_top;
		a->color_to_pixel_map_top++;
#endif
	}
	return result;
}