--- hatari/src/includes/wavFormat.h 2019/04/01 07:09:16 1.1.1.1 +++ hatari/src/includes/wavFormat.h 2019/04/01 07:12:42 1.1.1.3 @@ -1,9 +1,17 @@ /* - Hatari + 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. */ +#ifndef HATARI_WAVFORMAT_H +#define HATARI_WAVFORMAT_H + extern BOOL bRecordingWav; -extern BOOL WAVFormat_OpenFile(/*HWND hWnd,*/ char *pszWavFileName); -extern void WAVFormat_CloseFile(/*HWND hWnd*/); -extern void WAVFormat_Update(char *pSamples,int Index); +extern BOOL WAVFormat_OpenFile(char *pszWavFileName); +extern void WAVFormat_CloseFile(void); +extern void WAVFormat_Update(Sint8 *pSamples, int Index, int Length); + +#endif