ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/crossedit/Bitmaps.c
Revision: 1.1.1.1 (vendor branch)
Committed: Fri Feb 3 07:11:42 2006 UTC (18 years, 3 months ago) by root
Content type: text/plain
Branch: UPSTREAM
CVS Tags: UPSTREAM_2006_03_15, LAST_C_VERSION, UPSTREAM_2006_02_22, difficulty_fix_merge_060810_2300, UPSTREAM_2006_02_03
Branch point for: difficulty_fix
Changes since 1.1: +0 -0 lines
Log Message:
initial import

File Contents

# User Rev Content
1 root 1.1 #include "Posix.h"
2     #include "Bitmaps.h"
3     #include "./bitmaps/edit.bm"
4     #include "./bitmaps/mark.bm"
5     #include "./bitmaps/notify.bm"
6    
7     Bitmaps bitmaps;
8    
9     void BitmapsCreate(Display *d)
10     {
11     bitmaps.edit = XCreateBitmapFromData
12     (d,DefaultRootWindow(d),
13     (char*)edit_bits,
14     edit_width,
15     edit_height);
16     bitmaps.mark = XCreateBitmapFromData
17     (d,DefaultRootWindow(d),
18     (char*)mark_bits,
19     mark_width,
20     mark_height);
21     bitmaps.notify = XCreateBitmapFromData
22     (d,DefaultRootWindow(d),
23     (char*)notify_bits,
24     notify_width,
25     notify_height);
26     }
27