- Create another branch for networking fixes
[reactos.git] / base / applications / sndrec32 / audio_format.cpp
1 /*
2 * PROJECT: ReactOS Sound Record Application
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: base/applications/sndrec32/audio_format.cpp
5 * PURPOSE: Audio Format
6 * PROGRAMMERS: Marco Pagliaricci <ms_blue (at) hotmail (dot) it>
7 */
8
9
10 #include "stdafx.h"
11 #include "audio_format.hpp"
12
13 _AUDIO_NAMESPACE_START_
14
15 //
16 // Standard audio formats (declared as
17 // externs in `audio_format.hpp')
18 //
19
20 audio_format UNNKOWN_FORMAT( 0, 0, 0);
21 audio_format A44100_16BIT_STEREO( 44100, 16, 2 );
22
23 _AUDIO_NAMESPACE_END_
24