Initial git import
[sxemacs] / src / media / sound-sunplay.h
1 /* sound-sunplay.h - play a sound natively
2
3    Copyright (C) 2006 Sebastian Freundt
4
5 This file is part of SXEmacs
6
7 SXEmacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 SXEmacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program.  If not, see <http://www.gnu.org/licenses/>. */
19
20
21 /* Synched up with: Not in FSF. */
22
23 #ifndef INCLUDED_sound_sunplay_h_
24 #define INCLUDED_sound_sunplay_h_
25
26 #include "sound.h"
27
28 struct sound_native_data {
29         int driver_id;
30 };
31 typedef struct sound_native_data sound_native_data;
32
33 extern char *sound_native_subprint(Lisp_Object);
34 extern sound_native_data *sound_native_create(Lisp_Object);
35 extern void sound_native_finish(sound_native_data*);
36
37 extern int sound_native_play_stream(Lisp_Object);
38
39 extern Lisp_Object Qsunplay;            /* initialised in sound.c */
40
41
42 #define DEVICE_CONNECTED_TO_NATIVE_P(x) 1       /* FIXME: better check */
43
44 #endif  /* INCLUDED_sound_sunplay_h_ */