diff options
Diffstat (limited to 'src/ui/new_lobby.h')
-rw-r--r-- | src/ui/new_lobby.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ui/new_lobby.h b/src/ui/new_lobby.h index 9d100b6..ea2e09c 100644 --- a/src/ui/new_lobby.h +++ b/src/ui/new_lobby.h @@ -61,10 +61,23 @@ typedef struct UI_NEW_LOBBY_Handle QRcode *qr; } UI_NEW_LOBBY_Handle; +/** + * Initializes a handle for the new lobby dialog + * of a given messenger application. + * + * @param app Messenger application + * @param handle New lobby dialog handle + */ void ui_new_lobby_dialog_init(MESSENGER_Application *app, UI_NEW_LOBBY_Handle *handle); +/** + * Cleans up the allocated resources and resets the + * state of a given new lobby dialog handle. + * + * @param handle New lobby dialog handle + */ void ui_new_lobby_dialog_cleanup(UI_NEW_LOBBY_Handle *handle); |