summaryrefslogtreecommitdiff
path: root/new/ui.h
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-04-09 12:14:18 -0400
committerPietro Gagliardi <[email protected]>2015-04-09 12:14:18 -0400
commit2917d568d2b64610f0bd116320e11c05b74f47a9 (patch)
tree61d0f5be4ccd6b4f9550e9df0c9732ef74902c11 /new/ui.h
parent67bfe61c933de7c241bc646008b757e3871be906 (diff)
Added a checkbox to the test program. It won't do anything just yet...
Diffstat (limited to 'new/ui.h')
-rw-r--r--new/ui.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/new/ui.h b/new/ui.h
index 435ec28..632a7ba 100644
--- a/new/ui.h
+++ b/new/ui.h
@@ -45,4 +45,8 @@ uiControl *uiNewEntry(void);
char *uiEntryText(uiControl *);
void uiEntrySetText(uiControl *, const char *);
+uiControl *uiNewCheckbox(const char *);
+char *uiCheckboxText(void);
+void uiCheckboxSetText(uiControl *, const char *);
+
#endif