aboutsummaryrefslogtreecommitdiffstats
path: root/src/implementation.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/implementation.c')
-rw-r--r--src/implementation.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/implementation.c b/src/implementation.c
index 35c4c26..23bfbde 100644
--- a/src/implementation.c
+++ b/src/implementation.c
@@ -289,6 +289,18 @@ puglDispatchEvents(PuglWorld* world)
return puglUpdate(world, 0.0);
}
+PuglStatus
+puglShowWindow(PuglView* view)
+{
+ return puglShow(view);
+}
+
+PuglStatus
+puglHideWindow(PuglView* view)
+{
+ return puglHide(view);
+}
+
#endif
PuglStatus