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

Comparing deliantra/server/socket/info.C (file contents):
Revision 1.19 by root, Thu Dec 14 20:39:54 2006 UTC vs.
Revision 1.20 by root, Fri Dec 15 19:59:20 2006 UTC

43 * much the same thing as the draw_info above, but takes a color 43 * much the same thing as the draw_info above, but takes a color
44 * parameter. the esrv_drawinfo functions should probably be 44 * parameter. the esrv_drawinfo functions should probably be
45 * replaced with this, just using black as the color. 45 * replaced with this, just using black as the color.
46 */ 46 */
47static void 47static void
48esrv_print_msg (client_socket * ns, int color, const char *str) 48esrv_print_msg (client * ns, int color, const char *str)
49{ 49{
50 packet sl; 50 packet sl;
51 sl.printf ("drawinfo %d %s", color, str); 51 sl.printf ("drawinfo %d %s", color, str);
52 ns->send_packet (sl); 52 ns->send_packet (sl);
53} 53}
60 * subtype type and subtype of text message 60 * subtype type and subtype of text message
61 * intro Intro message to send with main message if client does not support the message type 61 * intro Intro message to send with main message if client does not support the message type
62 * message The main message 62 * message The main message
63 */ 63 */
64static void 64static void
65esrv_print_ext_msg (client_socket * ns, int color, uint8 type, uint8 subtype, const char *message) 65esrv_print_ext_msg (client * ns, int color, uint8 type, uint8 subtype, const char *message)
66{ 66{
67 packet sl; 67 packet sl;
68 68
69 sl.printf ("drawextinfo %d %hhu %hhu %s", color, type, subtype, message); 69 sl.printf ("drawextinfo %d %hhu %hhu %s", color, type, subtype, message);
70 ns->send_packet (sl); 70 ns->send_packet (sl);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines