aboutsummaryrefslogtreecommitdiff
path: root/src/application.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/application.h')
-rw-r--r--src/application.h11
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
43 int status; 43 int status;
44 WINDOW *window; 44 WINDOW *window;
45 45
46 struct {
47 WINDOW *logo;
48 WINDOW *main;
49 WINDOW *left;
50 WINDOW *right;
51 WINDOW *input;
52 } ui;
53
46 MESSENGER_Chat chat; 54 MESSENGER_Chat chat;
47 55
48 UI_ACCOUNTS_Handle accounts; 56 UI_ACCOUNTS_Handle accounts;
@@ -59,6 +67,9 @@ application_init(MESSENGER_Application *app,
59 char **argv); 67 char **argv);
60 68
61void 69void
70application_refresh(MESSENGER_Application *app);
71
72void
62application_run(MESSENGER_Application *app); 73application_run(MESSENGER_Application *app);
63 74
64int 75int