ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/freezethaw.C
(Generate patch)

Comparing deliantra/server/server/freezethaw.C (file contents):
Revision 1.11 by root, Fri Feb 16 19:43:41 2007 UTC vs.
Revision 1.12 by pippijn, Thu Mar 1 12:28:16 2007 UTC

52 add ((sint32)idx); 52 add ((sint32)idx);
53 add ('\n'); 53 add ('\n');
54 } 54 }
55} 55}
56 56
57// XXX: function not returning a bool
57bool 58bool
58object_freezer::save (const char *path) 59object_freezer::save (const char *path)
59{ 60{
60 CALL_BEGIN (3); 61 CALL_BEGIN (3);
61 CALL_ARG_SV (newSVpv (path, 0)); 62 CALL_ARG_SV (newSVpv (path, 0));
80 CALL_END; 81 CALL_END;
81 82
82 return res; 83 return res;
83} 84}
84 85
86// XXX: function not returning an int
85int 87int
86fprintf (object_freezer &freezer, const char *format, ...) 88fprintf (object_freezer &freezer, const char *format, ...)
87{ 89{
88 va_list ap; 90 va_list ap;
89 91
95 freezer.alloc (len); 97 freezer.alloc (len);
96 98
97 va_end (ap); 99 va_end (ap);
98} 100}
99 101
102// XXX: function not returning an int
100int 103int
101fputs (const char *s, object_freezer &freezer) 104fputs (const char *s, object_freezer &freezer)
102{ 105{
103 freezer.add (s); 106 freezer.add (s);
104} 107}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines