X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=src%2Fttt.h;h=5b4a807fb4f0258a62bc16a48a1601e1b072311b;hb=f42483382a5b2529fb1b36d5c6049b6bd1780876;hp=910c6883c78ad2473c74dd10405742900224a9d5;hpb=52bff07c451d6f5fbb2d9dd4f76f41479ba3c323;p=ttt diff --git a/src/ttt.h b/src/ttt.h index 910c688..5b4a807 100644 --- a/src/ttt.h +++ b/src/ttt.h @@ -26,6 +26,56 @@ #include "config.h" #endif -#include "args.h" +/* We use _GNU_SOURCE to get things like asprintf. */ +#define _GNU_SOURCE +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#define ASSERT_NOT_REACHED \ +do { \ + static const int NOT_REACHED = 0; \ + assert (NOT_REACHED); \ + exit (1); \ +} while (0) + +#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 4) +#define TTT_PRINTF_FORMAT(fmt_index, va_index) \ + __attribute__((__format__(__printf__, fmt_index, va_index))) +#else +#define TTT_PRINTF_FORMAT(fmt_index, va_index) +#endif + +typedef int ttt_bool_t; + +#define FALSE 0 +#define TRUE 1 + +#define TTT_SERVER_PROTOCOL_VERSION 1 + +typedef enum { + TTT_STATUS_SUCCESS = 0, + TTT_STATUS_FAILURE, + TTT_STATUS_EOF, + TTT_STATUS_CONNECTION_REFUSED, + TTT_STATUS_NETWORK_UNREACHABLE +} ttt_status_t; + +typedef struct _ttt_server ttt_server_t; +typedef struct _ttt_invite ttt_invite_t; +typedef struct _ttt_client ttt_client_t; + +#include "x.h" #endif