#pragma section-numbers off #pragma camelcase off = SDL_DelEventWatch = Use this function to remove an event watch callback added with [[SDL_AddEventWatch]](). <> == Syntax == {{{#!highlight cpp void SDL_DelEventWatch(SDL_EventFilter filter, void* userdata) }}} == Function Parameters == ||'''filter'''||the function originally passed to [[SDL_AddEventWatch]](); see [[#Remarks|Remarks]] for details|| ||'''userdata'''||the pointer originally passed to [[SDL_AddEventWatch]]()|| == Code Examples == {{{#!highlight cpp You can add your code example here }}} == Remarks == This function takes the same input as [[SDL_AddEventWatch]]() to identify and delete the corresponding callback. == Related Functions == .[[SDL_AddEventWatch]] ---- [[CategoryAPI]], [[CategoryEvents]]