Fetch AnyPropertyType from application

SVN revision: 9067
This commit is contained in:
xcomputerman 2004-02-21 20:44:37 +00:00 committed by xcomputerman
parent 999135b7e8
commit a2df8a3305
2 changed files with 8 additions and 1 deletions

View File

@ -734,7 +734,8 @@ void ecore_x_window_reparent(Ecore_X_Window win, Ecore_X_Window new_
void ecore_x_window_size_get(Ecore_X_Window win, int *w, int *h);
void ecore_x_window_cursor_show(Ecore_X_Window win, int show);
void ecore_x_window_defaults_set(Ecore_X_Window win);
Ecore_X_Atom ecore_x_window_prop_any_type(void);
void ecore_x_window_prop_property_set(Ecore_X_Window win, Ecore_X_Atom type, Ecore_X_Atom format, int size, void *data, int number);
int ecore_x_window_prop_property_get(Ecore_X_Window win, Ecore_X_Atom property, Ecore_X_Atom type, int size, unsigned char **data, int *num);
void ecore_x_window_prop_property_del(Ecore_X_Window win, Ecore_X_Atom property);

View File

@ -6,6 +6,12 @@
static Ecore_X_Atom _ecore_x_window_prop_state_atom_get(Ecore_X_Window_State s);
Ecore_X_Atom
ecore_x_window_prop_any_type(void)
{
return AnyPropertyType;
}
/**
* To be documented.
*