Define exported functions

SVN revision: 18304
This commit is contained in:
sebastid 2005-11-04 23:47:53 +00:00 committed by sebastid
parent f43c421ebe
commit 6d4a9a2337
3 changed files with 9 additions and 2 deletions

View File

@ -172,6 +172,12 @@ EAPI void ecore_directfb_window_del(Ecore_DirectFB_Window *window);
EAPI void ecore_directfb_window_move(Ecore_DirectFB_Window *window, int x, int y);
EAPI void ecore_directfb_window_resize(Ecore_DirectFB_Window *window, int w, int h);
EAPI void ecore_directfb_window_focus(Ecore_DirectFB_Window *window);
EAPI void ecore_directfb_window_show(Ecore_DirectFB_Window *window);
EAPI void ecore_directfb_window_hide(Ecore_DirectFB_Window *window);
EAPI void ecore_directfb_window_shaped_set(Ecore_DirectFB_Window *window, int set);
EAPI void ecore_directfb_window_fullscreen_set(Ecore_DirectFB_Window *window, int set);
EAPI void ecore_directfb_window_size_get(Ecore_DirectFB_Window *window, int *w, int *h);
EAPI void ecore_directfb_window_cursor_show(Ecore_DirectFB_Window *window, int show);

View File

@ -35,8 +35,6 @@ int ECORE_DIRECTFB_EVENT_LEAVE = 0;
int ECORE_DIRECTFB_EVENT_WHEEL = 0;
static int _ecore_directfb_event_fd_handler(void *data, Ecore_Fd_Handler *fd_handler);
static Ecore_Fd_Handler *_window_event_fd_handler_handle = NULL;
static Ecore_Fd_Handler *_input_event_fd_handler_handle = NULL;

View File

@ -238,6 +238,9 @@ int _ecore_evas_fb_shutdown(void);
int _ecore_evas_buffer_shutdown(void);
void _ecore_evas_buffer_render(Ecore_Evas *ee);
#endif
#ifdef BUILD_ECORE_EVAS_DIRECTFB
int _ecore_evas_directfb_shutdown(void);
#endif
void _ecore_evas_fps_debug_init(void);
void _ecore_evas_fps_debug_shutdown(void);