ecore-wl2: Add API function to return an iterator for display globals

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-08-20 12:18:52 -04:00
parent f5e35519b3
commit 88e47d7def
2 changed files with 16 additions and 0 deletions

View File

@ -190,6 +190,15 @@ EAPI struct wl_display *ecore_wl2_display_get(Ecore_Wl2_Display *display);
*/
EAPI struct wl_shm *ecore_wl2_display_shm_get(Ecore_Wl2_Display *display);
/**
* Return an Eina_Iterator that can be used to iterate through globals
*
* @param display The Ecore_Wl2_Display for which to return a global iterator
*
* @ingroup Ecore_Wl2_Display_Group
*/
EAPI Eina_Iterator *ecore_wl2_display_globals_get(Ecore_Wl2_Display *display);
/* # ifdef __cplusplus */
/* } */
/* # endif */

View File

@ -329,3 +329,10 @@ ecore_wl2_display_shm_get(Ecore_Wl2_Display *display)
EINA_SAFETY_ON_NULL_RETURN_VAL(display, NULL);
return display->wl.shm;
}
EAPI Eina_Iterator *
ecore_wl2_display_globals_get(Ecore_Wl2_Display *display)
{
EINA_SAFETY_ON_NULL_RETURN_VAL(display, NULL);
return eina_hash_iterator_data_new(display->globals);
}