diff options
author | jsorg71 <jsorg71> | 2009-04-19 17:16:46 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2009-04-19 17:16:46 +0000 |
commit | 631a7c16e1f5eec4b4550d3dfbfc85817e593f76 (patch) | |
tree | 8bdcc8fce062eb06caa858224fec19d06d3e84de /sesman/chansrv/sound.h | |
parent | 108cc8f03021f4b94a291c166e8a890c16893528 (diff) | |
download | xrdp-proprietary-631a7c16e1f5eec4b4550d3dfbfc85817e593f76.tar.gz xrdp-proprietary-631a7c16e1f5eec4b4550d3dfbfc85817e593f76.zip |
added chansrv
Diffstat (limited to 'sesman/chansrv/sound.h')
-rw-r--r-- | sesman/chansrv/sound.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sesman/chansrv/sound.h b/sesman/chansrv/sound.h new file mode 100644 index 00000000..9764ed87 --- /dev/null +++ b/sesman/chansrv/sound.h @@ -0,0 +1,18 @@ + +#if !defined(SOUND_H) +#define SOUND_H + +#include "arch.h" +#include "parse.h" + +int APP_CC +sound_init(void); +int APP_CC +sound_data_in(struct stream* s, int chan_id, int chan_flags, int length, + int total_length); +int APP_CC +sound_get_wait_objs(tbus* objs, int* count, int* timeout); +int APP_CC +sound_check_wait_objs(void); + +#endif |