summaryrefslogtreecommitdiff
path: root/new/ui.h
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-04-08 00:43:35 -0400
committerPietro Gagliardi <[email protected]>2015-04-08 00:43:35 -0400
commit54e947eed3d75d0fbae533e7e4cce8fe84aaf77c (patch)
treed510e639dfdb00f7ae8d8ce9de90a9e54001f901 /new/ui.h
parent521829a0a66f62e9ed4256440a1ed34565e4d51f (diff)
Started work on ensuring things get cleaned up. Added a destroy() method to uiControl and implemented most of the work for Windows.
Diffstat (limited to 'new/ui.h')
-rw-r--r--new/ui.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/new/ui.h b/new/ui.h
index 6d2a33f..d22e949 100644
--- a/new/ui.h
+++ b/new/ui.h
@@ -16,6 +16,9 @@ void uiMain(void);
void uiQuit(void);
typedef struct uiControl uiControl;
+// TODO public?
+void uiControlDestroy(uiControl *);
+// TODO before destroy?
uintptr_t uiControlHandle(uiControl *);
typedef struct uiWindow uiWindow;