Added some comments

This commit is contained in:
Ole Loots 2013-03-30 13:22:55 +01:00
parent 9178ede40b
commit 52cce28438
1 changed files with 6 additions and 1 deletions

View File

@ -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;