--- hatari/src/includes/wavFormat.h 2019/04/01 07:10:38 1.1.1.2 +++ hatari/src/includes/wavFormat.h 2019/04/09 08:53:18 1.1.1.5 @@ -1,17 +1,17 @@ /* Hatari - wavFormat.h - This file is distributed under the GNU Public License, version 2 or at - your option any later version. Read the file gpl.txt for details. + This file is distributed under the GNU General Public License, version 2 + or at your option any later version. Read the file gpl.txt for details. */ #ifndef HATARI_WAVFORMAT_H #define HATARI_WAVFORMAT_H -extern BOOL bRecordingWav; +extern bool bRecordingWav; -extern BOOL WAVFormat_OpenFile(char *pszWavFileName); +extern bool WAVFormat_OpenFile(char *pszWavFileName); extern void WAVFormat_CloseFile(void); -extern void WAVFormat_Update(char *pSamples, int Index, int Length); +extern void WAVFormat_Update(Sint16 pSamples[][2], int Index, int Length); #endif