diff options
Diffstat (limited to 'src/application.h')
-rw-r--r-- | src/application.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/application.h b/src/application.h index 1ad0c11..75bf336 100644 --- a/src/application.h +++ b/src/application.h @@ -43,6 +43,14 @@ typedef struct MESSENGER_Application int status; WINDOW *window; + struct { + WINDOW *logo; + WINDOW *main; + WINDOW *left; + WINDOW *right; + WINDOW *input; + } ui; + MESSENGER_Chat chat; UI_ACCOUNTS_Handle accounts; @@ -59,6 +67,9 @@ application_init(MESSENGER_Application *app, char **argv); void +application_refresh(MESSENGER_Application *app); + +void application_run(MESSENGER_Application *app); int |