Add comments to some layout functions

This commit is contained in:
Julien Danjou 2008-03-06 16:03:01 +01:00
parent 3d8b7565d4
commit b58631581b
1 changed files with 7 additions and 0 deletions

View File

@ -86,6 +86,9 @@ arrange(int screen)
globalconf.screens[screen].need_arrange = False;
}
/** Refresh the screen disposition
* \return true if the screen was arranged, false otherwise
*/
int
layout_refresh(void)
{
@ -102,6 +105,10 @@ layout_refresh(void)
return arranged;
}
/** Get current layout used on screen
* \param screen screen id
* \return layout used on that screen
*/
Layout *
layout_get_current(int screen)
{