diff options
Diffstat (limited to 'src/ui/lobby_create_dialog.h')
-rw-r--r-- | src/ui/lobby_create_dialog.h | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/src/ui/lobby_create_dialog.h b/src/ui/lobby_create_dialog.h index f780522..bdc34da 100644 --- a/src/ui/lobby_create_dialog.h +++ b/src/ui/lobby_create_dialog.h @@ -28,13 +28,25 @@ #include <stdlib.h> #include <curses.h> +#include <gnunet/platform.h> +#include <gnunet/gnunet_chat_lib.h> +#include <gnunet/gnunet_util_lib.h> + struct MESSENGER_Application; typedef struct UI_LOBBY_CREATE_DIALOG_Handle { - WINDOW **window; + WINDOW *window; + WINDOW **win; + + int line_index; + int line_offset; + int line_selected; + + uint64_t selected; - // TODO + struct GNUNET_CHAT_Lobby *lobby; + char *uri; } UI_LOBBY_CREATE_DIALOG_Handle; void |