update documentation for screen.c

This commit is contained in:
Julien Danjou 2007-10-03 00:20:34 +02:00
parent cd46ec6378
commit e9332cfef8
1 changed files with 7 additions and 2 deletions

View File

@ -30,7 +30,6 @@ extern Client *sel, *clients;
* \param disp Display ref
* \param screen Screen number
* \param statusbar statusbar
* \param screen_number int pointer filled with number of screens
* \return ScreenInfo struct array with all screens info
*/
ScreenInfo *
@ -91,7 +90,7 @@ get_display_info(Display *disp, int screen, Statusbar *statusbar)
* \param disp Display ref
* \param x x coordinate of the window
* \param y y coordinate of the window
* \return screen number or -1 on no match
* \return screen number or DefaultScreen of disp on no match
*/
int
get_screen_bycoord(Display *disp, int x, int y)
@ -148,6 +147,12 @@ get_phys_screen(Display *disp, int screen)
return screen;
}
/** Move a client to a virtual screen
* \param c the client
* \param acf_new the awesome_config for the new screen
* \param doresize set to True if we also move the client to the new x_org and
* y_org of the new screen
*/
void
move_client_to_screen(Client *c, awesome_config *acf_new, Bool doresize)
{