tcp: Fix 64 bit build with debugging features enabled.
[haiku.git] / src / kits / media / PlaySound.cpp
blobce7ad1b27b0b08da9b96551d49e8002d08686e05
1 /***********************************************************************
2 * AUTHOR: Marcus Overhagen
3 * FILE: PlaySound.cpp
4 * DESCR:
5 ***********************************************************************/
7 #include <BeBuild.h>
8 #include <OS.h>
9 #include <Entry.h>
11 #include <PlaySound.h>
12 #include "debug.h"
14 sound_handle play_sound(const entry_ref *soundRef,
15 bool mix,
16 bool queue,
17 bool background
20 UNIMPLEMENTED();
21 return (sound_handle)1;
24 status_t stop_sound(sound_handle handle)
26 UNIMPLEMENTED();
27 return B_OK;
30 status_t wait_for_sound(sound_handle handle)
32 UNIMPLEMENTED();
33 return B_OK;