ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/dynbuf.h
(Generate patch)

Comparing deliantra/server/include/dynbuf.h (file contents):
Revision 1.13 by root, Tue Jul 10 05:51:38 2007 UTC vs.
Revision 1.14 by root, Thu Aug 16 06:36:56 2007 UTC

170 dynbuf &operator << (sint64 i) { add (sint64 (i)); return *this; } 170 dynbuf &operator << (sint64 i) { add (sint64 (i)); return *this; }
171 dynbuf &operator << (uint32 i) { add (sint64 (i)); return *this; } 171 dynbuf &operator << (uint32 i) { add (sint64 (i)); return *this; }
172 dynbuf &operator << (uint64 i) { add (sint64 (i)); return *this; } 172 dynbuf &operator << (uint64 i) { add (sint64 (i)); return *this; }
173 173
174 void printf (const char *format, ...); 174 void printf (const char *format, ...);
175 void vprintf (const char *format, va_list ap);
175 176
176 void add_abilities (const char *name, uint32 abilities); 177 void add_abilities (const char *name, uint32 abilities);
177 void add_paths (const char *name, uint32 paths); 178 void add_paths (const char *name, uint32 paths);
178 179
179 // returns the string, linearised and with trailing \0 180 // returns the string, linearised and with trailing \0

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines