caudio/include/EAudioFormats.h

20 lines
425 B
C
Raw Normal View History

2010-02-09 05:18:39 +01:00
// Copyright (c) 2008-2010 Raynaldo (Wildicv) Rivera, Joshua (Dark_Kilauea) Jones
// This file is part of the "cAudio Engine"
// For conditions of distribution and use, see copyright notice in cAudio.h
2009-08-26 02:00:50 +02:00
#ifndef EAUDIOFORMATS_H
#define EAUDIOFORMATS_H
namespace cAudio
{
2010-02-09 05:18:39 +01:00
enum AudioFormats
{
EAF_8BIT_MONO,
EAF_8BIT_STEREO,
EAF_16BIT_MONO,
EAF_16BIT_STEREO
};
2009-08-26 02:00:50 +02:00
};
#endif //! EAUDIOFORMATS_H