ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/crossedit/CrFaceP.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

# Content
1 #ifndef _CrFaceP_h
2 #define _CrFaceP_h
3
4 #include "CrFace.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 } CrFaceClassPart;
17
18 typedef struct _CrFaceClassRec {
19 CoreClassPart core_class;
20 CrFaceClassPart crFace_class;
21 } CrFaceClassRec;
22
23 extern CrFaceClassRec crFaceClassRec;
24
25 /**********************************************************************
26 * instance *
27 **********************************************************************/
28
29 typedef struct {
30 GC gc;
31 object *ob;
32 Boolean adjust;
33 } CrFacePart;
34
35 typedef struct _CrFaceRec {
36 CorePart core;
37 CrFacePart crFace;
38 } CrFaceRec;
39
40 #endif /* _CrFace_h */
41
42
43