remove ecore_pipe declarations and some trailing spaces

SVN revision: 34672
This commit is contained in:
doursse 2008-05-26 05:31:20 +00:00 committed by doursse
parent cc0ca9325e
commit 479741fef0
2 changed files with 3 additions and 18 deletions

View File

@ -124,7 +124,6 @@ extern "C" {
typedef void Ecore_Event; /**< A handle for an event */
typedef void Ecore_Animator; /**< A handle for animators */
typedef void Ecore_Poller; /**< A handle for pollers */
typedef void Ecore_Pipe; /**< A handle for pipes */
#endif
typedef struct _Ecore_Event_Signal_User Ecore_Event_Signal_User; /**< User signal event */
typedef struct _Ecore_Event_Signal_Hup Ecore_Event_Signal_Hup; /**< Hup signal event */
@ -299,11 +298,6 @@ extern "C" {
EAPI Ecore_Poller *ecore_poller_add(Ecore_Poller_Type type, int interval, int (*func) (void *data), const void *data);
EAPI void *ecore_poller_del(Ecore_Poller *poller);
EAPI Ecore_Pipe *ecore_pipe_new (void (*handler) (void *data));
EAPI void ecore_pipe_free(Ecore_Pipe *pipe);
EAPI void ecore_pipe_write(Ecore_Pipe *pipe,
void *data);
#ifdef __cplusplus
}

View File

@ -247,7 +247,6 @@ typedef struct _Ecore_Event_Filter Ecore_Event_Filter;
typedef struct _Ecore_Event Ecore_Event;
typedef struct _Ecore_Animator Ecore_Animator;
typedef struct _Ecore_Poller Ecore_Poller;
typedef struct _Ecore_Pipe Ecore_Pipe;
#ifndef _WIN32
struct _Ecore_Exe
@ -397,14 +396,6 @@ struct _Ecore_Poller
void *data;
};
struct _Ecore_Pipe
{
int fd_read;
int fd_write;
int event_data;
void (*handler) (void *data);
};
#endif
EAPI void _ecore_magic_fail(void *d, Ecore_Magic m, Ecore_Magic req_m, const char *fname);