ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtcolor.C
(Generate patch)

Comparing rxvt-unicode/src/rxvtcolor.C (file contents):
Revision 1.9 by pcg, Sun Mar 14 17:33:08 2004 UTC vs.
Revision 1.11 by pcg, Tue Mar 30 14:45:13 2004 UTC

2#include <rxvt.h> 2#include <rxvt.h>
3#include <rxvtcolor.h> 3#include <rxvtcolor.h>
4 4
5#include <unistd.h> 5#include <unistd.h>
6#include <fcntl.h> 6#include <fcntl.h>
7
8class byteorder byteorder;
9
10byteorder::byteorder ()
11{
12 union {
13 uint32_t u;
14 uint8_t b[4];
15 } w;
16
17 w.b[0] = 0x11;
18 w.b[1] = 0x22;
19 w.b[2] = 0x33;
20 w.b[3] = 0x44;
21
22 e = w.u;
23}
7 24
8refcounted::refcounted (const char *id) 25refcounted::refcounted (const char *id)
9{ 26{
10 this->id = STRDUP (id); 27 this->id = STRDUP (id);
11} 28}
255void rxvt_display::put_xim (rxvt_xim *xim) 272void rxvt_display::put_xim (rxvt_xim *xim)
256{ 273{
257 xims.put (xim); 274 xims.put (xim);
258} 275}
259 276
277Atom rxvt_display::atom (const char *name)
278{
279 return XInternAtom (display, name, False);
280}
281
260///////////////////////////////////////////////////////////////////////////// 282/////////////////////////////////////////////////////////////////////////////
261 283
262template refcache<rxvt_display>; 284template refcache<rxvt_display>;
263refcache<rxvt_display> displays; 285refcache<rxvt_display> displays;
264 286

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines