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

Comparing deliantra/server/include/book.h (file contents):
Revision 1.2 by root, Tue Aug 29 08:01:36 2006 UTC vs.
Revision 1.3 by root, Sat Sep 16 22:06:17 2006 UTC

24 * mesg buffer exceed the max. size (BOOK_BUF) */ 24 * mesg buffer exceed the max. size (BOOK_BUF) */
25 25
26#define BOOKSIZE(xyz) BASE_BOOK_BUF+((xyz)->weight/10)>BOOK_BUF? \ 26#define BOOKSIZE(xyz) BASE_BOOK_BUF+((xyz)->weight/10)>BOOK_BUF? \
27 BOOK_BUF:BASE_BOOK_BUF+((xyz)->weight/10); 27 BOOK_BUF:BASE_BOOK_BUF+((xyz)->weight/10);
28 28
29typedef struct { 29struct readable_message_type
30{
30 uint8 message_type; 31 uint8 message_type;
31 uint8 message_subtype; 32 uint8 message_subtype;
32} readable_message_type; 33};
34
33#endif 35#endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines