X-Git-Url: https://git.cworth.org/git?p=loudgame;a=blobdiff_plain;f=loudgame.h;fp=loudgame.h;h=11e74df5fde3456b23858b21229797de8aa2f94b;hp=a65f5dd6aa38fce3dc546bd3d3af0e6710edf355;hb=0df3d3dd2384f2606ad5e037c925cb88a5f30fef;hpb=1b9383bc1758fa4b49ab029c730b7ba434b0f7ad diff --git a/loudgame.h b/loudgame.h index a65f5dd..11e74df 100644 --- a/loudgame.h +++ b/loudgame.h @@ -20,6 +20,7 @@ #ifndef __LOUDGAME_H__ #define __LOUDGAME_H__ +#include #include typedef struct _loudgame loudgame_t; @@ -51,6 +52,18 @@ loudgame_send (loudgame_t *lg, const char *peer, const char *message); +void +loudgame_sendf (loudgame_t *lg, + const char *peer, + const char *format, + ...); + +void +loudgame_vsendf (loudgame_t *lg, + const char *peer, + const char *format, + va_list va); + void loudgame_quit (loudgame_t *lg, int return_value);