raster: please advise which semantics we'll stick with.

SVN revision: 7515
This commit is contained in:
azundris 2003-10-08 15:04:54 +00:00 committed by azundris
parent 64231c6d19
commit f5b71965c9
1 changed files with 6 additions and 6 deletions

View File

@ -32,11 +32,11 @@ static void *ecore_raw_event_event = NULL;
* structure that is specific to that event type, and a data pointer that is
* provided in this call as the @p data parameter.
*
* When the callback @p func is called, it must return 1 or 0. If it returns
* 1, It will keep being called as per normal, when events come into the event
* queue. If it returns 0, it will be removed from the list of event handlers
* and be destroyed. If this happens the event handler object returned is no
* longer valid, and the handler will not be called again after it returns 0.
* When the callback @p func is called, it must return 1 or 0. If it returns
* 1, It will keep being called as per normal, when events come into the event
* queue. If it returns 0, it will be removed from the list of event handlers
* and be destroyed. If this happens the event handler object returned is no
* longer valid, and the handler will not be called again after it returns 0.
*
* @code
* #include <Ecore.h>
@ -433,7 +433,7 @@ _ecore_event_call(void)
if (eh->type == e->type)
{
if (!eh->func(eh->data, e->type, e->event))
break;
break; /* 0 == "call no further handlers" */
}
}
}