summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--atari/gemtk/guiwin.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/atari/gemtk/guiwin.c b/atari/gemtk/guiwin.c
index 0334e58df..28eea4ebd 100644
--- a/atari/gemtk/guiwin.c
+++ b/atari/gemtk/guiwin.c
@@ -673,7 +673,6 @@ GUIWIN *gemtk_wm_find(short handle)
return(NULL);
}
-
/**
* Check's if the pointer is managed by the guiwin API.
*/
@@ -690,6 +689,9 @@ GUIWIN *gemtk_wm_validate_ptr(GUIWIN *win)
return(NULL);
}
+/**
+* Add the GUIWIN to the list of handled windows.
+*/
GUIWIN *gemtk_wm_link(GUIWIN *win)
{
/* Make sure the window is not linked: */
@@ -714,6 +716,9 @@ GUIWIN *gemtk_wm_link(GUIWIN *win)
}
}
+/**
+* Remove the GUIWIN from the list of handled windows.
+*/
GUIWIN *gemtk_wm_unlink(GUIWIN *win)
{
GUIWIN * win_val;