ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/crossedit/CrListP.h
Revision: 1.1.1.1 (vendor branch)
Committed: Fri Feb 3 07:11:43 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

# Content
1 #ifndef _CrListP_h
2 #define _CrListP_h
3
4 #include <CrList.h>
5
6 #include <X11/CoreP.h>
7
8 /**********************************************************************
9 * class *
10 **********************************************************************/
11
12 typedef struct {
13 int empty;
14 } CrListClassPart;
15
16 typedef struct _CrListClassRec {
17 CoreClassPart core_class;
18 CrListClassPart crList_class;
19 } CrListClassRec;
20
21 extern CrListClassRec crListClassRec;
22
23 /**********************************************************************
24 * instance *
25 **********************************************************************/
26
27 typedef struct {
28 GC gc;
29 XFontStruct *font;
30 GC normal_GC;
31 Pixel foreground;
32 /* Boolean adjust; */
33 XtCallbackList selectCallbacks; /* called when selecting */
34 XtCallbackList insertCallbacks; /* called when inserting */
35 XtCallbackList deleteCallbacks; /* called when */
36
37 CrListNode (*next)(XtPointer, XtPointer); /* called when */
38 void *element;
39 XtPointer *caller;
40 } CrListPart;
41
42 typedef struct _CrListRec {
43 CorePart core;
44 CrListPart crList;
45 } CrListRec;
46
47 #endif /* _CrList_h */
48
49
50