aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorArslaan Pathan <[email protected]>2026-03-26 12:35:01 +1300
committerArslaan Pathan <[email protected]>2026-03-26 12:35:01 +1300
commit84aaa30616986b119ce0edfd902eda8e1eeaa940 (patch)
treeb19eea16287011deae7a2d162ea64140c49dca45 /main.c
parent82c1df66121558fa43d0be99babb8ab8a6c68c1e (diff)
downloadcinnamon-browser-84aaa30616986b119ce0edfd902eda8e1eeaa940.tar.xz
cinnamon-browser-84aaa30616986b119ce0edfd902eda8e1eeaa940.zip
something?
Diffstat (limited to 'main.c')
-rw-r--r--main.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/main.c b/main.c
index 5986341..a6b012f 100644
--- a/main.c
+++ b/main.c
@@ -6,6 +6,13 @@ This software is licensed under the ARPL. See LICENSE for details.
#include <gtk/gtk.h>
#include "config.h"
+/* struct so we can easily pass objects around. will actually use this in code later */
+typedef struct {
+ GtkWidget *window;
+ GtkWidget *notebook;
+ GtkWidget *cmdbar;
+} Cinnamon;
+
/* 0 = normal mode, 1 = insert, 2 = passthrough */
static int mode = 0;