1 #ifndef GEANYPY_UI_UTILS_H__
2 #define GEANYPY_UI_UTILS_H__
3 
4 extern PyTypeObject InterfacePrefsType;
5 extern PyTypeObject MainWidgetsType;
6 
7 typedef struct
8 {
9 	PyObject_HEAD
10 	GeanyInterfacePrefs *iface_prefs;
11 } InterfacePrefs;
12 
13 typedef struct
14 {
15 	PyObject_HEAD
16 	GeanyMainWidgets *main_widgets;
17 } MainWidgets;
18 
19 #endif /* GEANYPY_UI_UTILS_H__ */
20