ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/typemap
Revision: 1.10
Committed: Wed Dec 27 13:13:47 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.9: +1 -0 lines
Log Message:
misc stuff

File Contents

# User Rev Content
1 root 1.1 val64 T_VAL64
2     uint64 T_VAL64
3    
4 root 1.9 object * T_CF_OBJ
5 root 1.7 partylist * T_CF_OBJ
6     archetype * T_CF_OBJ
7     maptile * T_CF_OBJ
8     region * T_CF_OBJ
9 root 1.8 client * T_CF_OBJ
10 root 1.7 player * T_CF_OBJ
11     living * T_CF_OBJ
12 root 1.10 attachable * T_CF_OBJ
13 root 1.7
14 root 1.6 Settings * T_SETTINGS
15 root 1.1
16 root 1.9 object_ornull * T_CF_OBJ_ORNULL
17     mapstruct_ornull * T_CF_OBJ_ORNULL
18 root 1.1
19     INPUT
20    
21     T_VAL64
22     $var = ($type)SvVAL64 ($arg);
23    
24 root 1.7 T_CF_OBJ
25 root 1.4 sv_to ($arg, $var)
26 root 1.7
27 root 1.6 T_SETTINGS
28 root 1.9 $var = &settings
29 root 1.7
30 root 1.9 T_CF_OBJ_ORNULL
31     if (SvOK ($arg))
32     sv_to ($arg, $var);
33     else
34     $var = 0;
35 root 1.1
36     OUTPUT
37    
38     T_VAL64
39     $arg = newSVval64 ($var);
40    
41 root 1.9 T_CF_OBJ_NORNULL
42 root 1.4 $arg = to_sv ($var);
43 root 1.7
44     T_CF_OBJ
45 root 1.4 $arg = to_sv ($var);
46 root 1.1