ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/crossedit/CrEditP.h
Revision: 1.2
Committed: Sun Aug 13 17:16:01 2006 UTC (17 years, 9 months ago) by elmex
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
State: FILE REMOVED
Log Message:
Made server compile with C++.
Removed cfanim plugin and crossedit.
C++ here we come.

File Contents

# User Rev Content
1 root 1.1 #ifndef _CrEditP_h
2     #define _CrEditP_h
3    
4     #include <CrEdit.h>
5     #include <X11.h>
6    
7     #include <X11/IntrinsicP.h>
8     #include <X11/CoreP.h>
9    
10     /**********************************************************************
11     * class *
12     **********************************************************************/
13    
14     typedef struct {
15     int empty;
16     } CrEditClassPart;
17    
18     typedef struct _CrEditClassRec {
19     CoreClassPart core_class;
20     CrEditClassPart crEdit_class;
21     } CrEditClassRec;
22    
23     extern CrEditClassRec crEditClassRec;
24    
25     /**********************************************************************
26     * instance *
27     **********************************************************************/
28    
29     typedef struct {
30     GC gc; /* */
31     Map map; /* */
32     int stacking; /* */
33     int fontSize; /* */
34     int show_weak_walls; /* */
35     Boolean selectArea; /* */
36     XSegment seg; /* */
37    
38     XtCallbackList insertCallbacks;
39     XtCallbackList selectCallbacks;
40     XtCallbackList propsCallbacks;
41     XtCallbackList deleteCallbacks;
42     XtCallbackList alignCallbacks;
43     XtCallbackList feedCallbacks;
44     } CrEditPart;
45    
46     typedef struct _CrEditRec {
47     CorePart core;
48     CrEditPart crEdit;
49     } CrEditRec;
50    
51     #endif /* _CrEdit_h */
52    
53    
54