Ecore.h   Ecore.h 
skipping to change at line 240 skipping to change at line 240
* @typedef Ecore_Fd_Cb Ecore_Fd_Cb * @typedef Ecore_Fd_Cb Ecore_Fd_Cb
* A callback used by an @ref Ecore_Fd_Handler. * A callback used by an @ref Ecore_Fd_Handler.
*/ */
typedef Eina_Bool (*Ecore_Fd_Cb) (void *data, Ecore_Fd_Handler *fd_handl er); typedef Eina_Bool (*Ecore_Fd_Cb) (void *data, Ecore_Fd_Handler *fd_handl er);
/** /**
* @typedef Ecore_Fd_Prep_Cb Ecore_Fd_Prep_Cb * @typedef Ecore_Fd_Prep_Cb Ecore_Fd_Prep_Cb
* A callback used by an @ref Ecore_Fd_Handler. * A callback used by an @ref Ecore_Fd_Handler.
*/ */
typedef void (*Ecore_Fd_Prep_Cb) (void *data, Ecore_Fd_Handler *fd_handl er); typedef void (*Ecore_Fd_Prep_Cb) (void *data, Ecore_Fd_Handler *fd_handl er);
/** /**
* @typedef Ecore_Fd_Win32_Cb Ecore_Fd_Win32_Cb * @typedef Ecore_Win32_Handle_Cb Ecore_Win32_Handle_Cb
* A callback used by an @ref Ecore_Win32_Handler. * A callback used by an @ref Ecore_Win32_Handler.
*/ */
typedef Eina_Bool (*Ecore_Fd_Win32_Cb) (void *data, Ecore_Win32_Handler *wh); typedef Eina_Bool (*Ecore_Win32_Handle_Cb) (void *data, Ecore_Win32_Hand ler *wh);
typedef struct _Ecore_Job Ecore_Job; /**< A job handle */ typedef struct _Ecore_Job Ecore_Job; /**< A job handle */
struct _Ecore_Event_Signal_User /** User signal event */ struct _Ecore_Event_Signal_User /** User signal event */
{ {
int number; /**< The signal number. Either 1 or 2 */ int number; /**< The signal number. Either 1 or 2 */
void *ext_data; /**< Extension data - not used */ void *ext_data; /**< Extension data - not used */
#ifndef _WIN32 #ifndef _WIN32
siginfo_t data; /**< Signal info */ siginfo_t data; /**< Signal info */
skipping to change at line 457 skipping to change at line 457
EAPI void ecore_main_loop_begin(void); EAPI void ecore_main_loop_begin(void);
EAPI void ecore_main_loop_quit(void); EAPI void ecore_main_loop_quit(void);
EAPI Ecore_Fd_Handler *ecore_main_fd_handler_add(int fd, Ecore_Fd_Handle r_Flags flags, Ecore_Fd_Cb func, const void *data, EAPI Ecore_Fd_Handler *ecore_main_fd_handler_add(int fd, Ecore_Fd_Handle r_Flags flags, Ecore_Fd_Cb func, const void *data,
Ecore_Fd_Cb buf_func, c onst void *buf_data); Ecore_Fd_Cb buf_func, c onst void *buf_data);
EAPI void ecore_main_fd_handler_prepare_callback_set(Ecore_ Fd_Handler *fd_handler, Ecore_Fd_Prep_Cb func, const void *data); EAPI void ecore_main_fd_handler_prepare_callback_set(Ecore_ Fd_Handler *fd_handler, Ecore_Fd_Prep_Cb func, const void *data);
EAPI void *ecore_main_fd_handler_del(Ecore_Fd_Handler *fd_ha ndler); EAPI void *ecore_main_fd_handler_del(Ecore_Fd_Handler *fd_ha ndler);
EAPI int ecore_main_fd_handler_fd_get(Ecore_Fd_Handler *fd _handler); EAPI int ecore_main_fd_handler_fd_get(Ecore_Fd_Handler *fd _handler);
EAPI Eina_Bool ecore_main_fd_handler_active_get(Ecore_Fd_Handler *fd_handler, Ecore_Fd_Handler_Flags flags); EAPI Eina_Bool ecore_main_fd_handler_active_get(Ecore_Fd_Handler *fd_handler, Ecore_Fd_Handler_Flags flags);
EAPI void ecore_main_fd_handler_active_set(Ecore_Fd_Handler *fd_handler, Ecore_Fd_Handler_Flags flags); EAPI void ecore_main_fd_handler_active_set(Ecore_Fd_Handler *fd_handler, Ecore_Fd_Handler_Flags flags);
EAPI Ecore_Win32_Handler *ecore_main_win32_handler_add(void *h, Ecore_Fd _Win32_Cb func, const void *data); EAPI Ecore_Win32_Handler *ecore_main_win32_handler_add(void *h, Ecore_Wi n32_Handle_Cb func, const void *data);
EAPI void *ecore_main_win32_handler_del(Ecore_Win32_Handl er *win32_handler); EAPI void *ecore_main_win32_handler_del(Ecore_Win32_Handl er *win32_handler);
/** /**
* @} * @}
*/ */
/** /**
* @defgroup Ecore_Pipe_Group Pipe wrapper * @defgroup Ecore_Pipe_Group Pipe wrapper
* *
* @{ * @{
 End of changes. 3 change blocks. 
3 lines changed or deleted 3 lines changed or added


 Ecore_File.h   Ecore_File.h 
skipping to change at line 76 skipping to change at line 76
* The event type returned when a file or directory is monitored. * The event type returned when a file or directory is monitored.
*/ */
typedef enum _Ecore_File_Event typedef enum _Ecore_File_Event
{ {
ECORE_FILE_EVENT_NONE, /**< No event. */ ECORE_FILE_EVENT_NONE, /**< No event. */
ECORE_FILE_EVENT_CREATED_FILE, /**< Created file event. */ ECORE_FILE_EVENT_CREATED_FILE, /**< Created file event. */
ECORE_FILE_EVENT_CREATED_DIRECTORY, /**< Created directory event. */ ECORE_FILE_EVENT_CREATED_DIRECTORY, /**< Created directory event. */
ECORE_FILE_EVENT_DELETED_FILE, /**< Deleted file event. */ ECORE_FILE_EVENT_DELETED_FILE, /**< Deleted file event. */
ECORE_FILE_EVENT_DELETED_DIRECTORY, /**< Deleted directory event. */ ECORE_FILE_EVENT_DELETED_DIRECTORY, /**< Deleted directory event. */
ECORE_FILE_EVENT_DELETED_SELF, /**< Deleted monitored directory eve nt. */ ECORE_FILE_EVENT_DELETED_SELF, /**< Deleted monitored directory eve nt. */
ECORE_FILE_EVENT_MODIFIED /**< Modified file or directory even ECORE_FILE_EVENT_MODIFIED, /**< Modified file or directory even
t. */ t. */
ECORE_FILE_EVENT_CLOSED /**< Closed file event */
} Ecore_File_Event; } Ecore_File_Event;
/** /**
* @typedef Ecore_File_Monitor_Cb * @typedef Ecore_File_Monitor_Cb
* Callback type used when a monitored directory has changes. * Callback type used when a monitored directory has changes.
*/ */
typedef void (*Ecore_File_Monitor_Cb)(void *data, Ecore_File_Monitor *em, E core_File_Event event, const char *path); typedef void (*Ecore_File_Monitor_Cb)(void *data, Ecore_File_Monitor *em, E core_File_Event event, const char *path);
/** /**
* @typedef Ecore_File_Download_Completion_Cb * @typedef Ecore_File_Download_Completion_Cb
 End of changes. 1 change blocks. 
2 lines changed or deleted 3 lines changed or added


 Ecore_Input.h   Ecore_Input.h 
#ifndef _ECORE_INPUT_H #ifndef _ECORE_INPUT_H
#define _ECORE_INPUT_H #define _ECORE_INPUT_H
#ifdef _WIN32
# include <stddef.h>
#else
# include <inttypes.h>
#endif
#ifdef EAPI #ifdef EAPI
# undef EAPI # undef EAPI
#endif #endif
#ifdef _WIN32 #ifdef _WIN32
# ifdef EFL_ECORE_INPUT_BUILD # ifdef EFL_ECORE_INPUT_BUILD
# ifdef DLL_EXPORT # ifdef DLL_EXPORT
# define EAPI __declspec(dllexport) # define EAPI __declspec(dllexport)
# else # else
# define EAPI # define EAPI
 End of changes. 1 change blocks. 
0 lines changed or deleted 6 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/