aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-05-20 16:18:10 +0200
committerJoel Bodenmann <joel@unormal.org>2013-05-20 16:18:10 +0200
commit757b28531f944a01edf3d64bf9608cde8ffeffba (patch)
tree19ad939dee98d026521c2813a6afe3a16fe05194 /src
parent92883c795ee27ededc68b7ee89bfa314987598b3 (diff)
downloaduGFX-757b28531f944a01edf3d64bf9608cde8ffeffba.tar.gz
uGFX-757b28531f944a01edf3d64bf9608cde8ffeffba.tar.bz2
uGFX-757b28531f944a01edf3d64bf9608cde8ffeffba.zip
added enable and disable APIs to high level GWIN code
Diffstat (limited to 'src')
-rw-r--r--src/gwin/gwin.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gwin/gwin.c b/src/gwin/gwin.c
index 70cc12ee..b6340c2d 100644
--- a/src/gwin/gwin.c
+++ b/src/gwin/gwin.c
@@ -55,6 +55,10 @@ GHandle gwinCreateWindow(GWindowObject *gw, coord_t x, coord_t y, coord_t width,
return (GHandle)gw;
}
+void gwinSetEnabled(GHandle gh, bool_t enabled) {
+
+}
+
void gwinDestroyWindow(GHandle gh) {
// Clean up any type specific dynamic memory allocations
switch(gh->type) {