add a couple of additional hooks for modules to use

git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1600 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2007-08-09 21:05:20 +00:00
parent ed01e1adb5
commit 30ccf9a5c9
6 changed files with 75 additions and 13 deletions

View file

@ -88,10 +88,22 @@ struct pa_core {
/* hooks */
pa_hook
hook_sink_input_new,
hook_sink_new,
hook_sink_new_post,
hook_sink_disconnect,
hook_sink_disconnect_post,
hook_source_new,
hook_source_new_post,
hook_source_disconnect,
hook_source_disconnect_post,
hook_sink_input_new,
hook_sink_input_new_post,
hook_sink_input_disconnect,
hook_sink_input_disconnect_post,
hook_source_output_new,
hook_source_disconnect;
hook_source_output_new_post,
hook_source_output_disconnect,
hook_source_output_disconnect_post;
pa_asyncmsgq *asyncmsgq;
pa_io_event *asyncmsgq_event;