Event library EvntExec() EvntDisable()
Programming guideline of WinDom

EvntRemove()

NAME

EvntRemove - Remove one function binded to an event.

PROTOTYPAGE

int EvntRemove( WINDOW *win, int ev, void *proc);

PARAMETRES

win:
targeted window or NULL,

ev:
event to find,

proc:
function to remove.

return:
TRUE if the function is found and correctly removed.

DESCRIPTION

EvntRemove() removes one function binded to an event. It is different to EventDelete() which removes all functions binded to an same event. Because a same function can be binded to different event, you should give an event (ev parameter) and, of course, the address of function to delete (proc parameter.

This function was not documented from WinDom 1.00.

SEE ALSO

EvntDelete().