some mroe calls... guess what i'm doing eh? :)

SVN revision: 11894
This commit is contained in:
Carsten Haitzler 2004-10-17 12:29:02 +00:00
parent 011f0e3ef5
commit 1fff84ea1a
2 changed files with 19 additions and 0 deletions

View File

@ -915,7 +915,14 @@ void ecore_x_icccm_send_take_focus(Ecore_X_Window win);
int
ecore_x_window_attributes_get(Ecore_X_Window win, Ecore_X_Window_Attributes *att_ret);
void
ecore_x_window_save_set_add(Ecore_X_Window win);
void
ecore_x_window_save_set_del(Ecore_X_Window win);
Ecore_X_Cursor
ecore_x_cursor_new(Ecore_X_Window win, int *pixels, int w, int h, int hot_x, int hot_y);
void

View File

@ -1020,6 +1020,18 @@ ecore_x_window_attributes_get(Ecore_X_Window win, Ecore_X_Window_Attributes *att
return 1;
}
void
ecore_x_window_save_set_add(Ecore_X_Window win)
{
XAddToSaveSet(_ecore_x_disp, win);
}
void
ecore_x_window_save_set_del(Ecore_X_Window win)
{
XRemoveFromSaveSet(_ecore_x_disp, win);
}