~kunquat-maintainers/kunquat/kunquat-media

« back to all changes in this revision

Viewing changes to src/demo/Audio_openal.h

  • Committer: Toni Ruottu
  • Date: 2009-07-06 22:23:01 UTC
  • Revision ID: toni.ruottu@iki.fi-20090706222301-re2ik5yxsojg2qms
removed source code, moved contents of contrib to root directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
 
3
 
/*
4
 
 * Copyright 2009 Heikki Aitakangas
5
 
 *
6
 
 * This file is part of Kunquat.
7
 
 *
8
 
 * Kunquat is free software: you can redistribute it and/or modify
9
 
 * it under the terms of the GNU General Public License as published by
10
 
 * the Free Software Foundation, either version 3 of the License, or
11
 
 * (at your option) any later version.
12
 
 *
13
 
 * Kunquat is distributed in the hope that it will be useful,
14
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
 * GNU General Public License for more details.
17
 
 *
18
 
 * You should have received a copy of the GNU General Public License
19
 
 * along with Kunquat.  If not, see <http://www.gnu.org/licenses/>.
20
 
 */
21
 
 
22
 
 
23
 
#ifndef AUDIO_OPENAL_H
24
 
#define AUDIO_OPENAL_H
25
 
 
26
 
 
27
 
#ifdef ENABLE_OPENAL
28
 
 
29
 
 
30
 
#include <stdbool.h>
31
 
#include <stdint.h>
32
 
 
33
 
#include <AL/al.h>
34
 
#include <AL/alut.h>
35
 
 
36
 
#include <kunquat.h>
37
 
 
38
 
 
39
 
/**
40
 
 * Creates an OpenAL client.
41
 
 *
42
 
 * \param pl   The Playlist -- must not be \c NULL.
43
 
 *
44
 
 * \return   \c true if successful, otherwise \c false.
45
 
 */
46
 
bool Audio_openal_open(Playlist* pl);
47
 
 
48
 
 
49
 
/**
50
 
 * Closes the OpenAL client.
51
 
 */
52
 
void Audio_openal_close(void);
53
 
 
54
 
 
55
 
#endif // ENABLE_OPENAL
56
 
 
57
 
 
58
 
#endif // AUDIO_OPENAL_H
59
 
 
60