]> git.tdb.fi Git - libs/al.git/blob - source/format.h
Fix a typo in the copyright notice
[libs/al.git] / source / format.h
1 /* $Id$
2
3 This file is part of libmspal
4 Copyright © 2008 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_AL_FORMAT_H_
9 #define MSP_AL_FORMAT_H_
10
11 #include <AL/al.h>
12
13 namespace Msp {
14 namespace AL {
15
16 enum Format
17 {
18         MONO8    = AL_FORMAT_MONO8,
19         MONO16   = AL_FORMAT_MONO16,
20         STEREO8  = AL_FORMAT_STEREO8,
21         STEREO16 = AL_FORMAT_STEREO16
22 };
23
24 } // namespace AL
25 } // namespace Msp
26
27 #endif