mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-17 21:04:45 +00:00
82c09abd54
* Add missing Riff.h include and fix const correctness of arguments. * Cosmetic improvements to Perf breakdown in LogPerfTimings(). * Logging - removed unnecessary cast.
6 lines
198 B
C
6 lines
198 B
C
#pragma once
|
|
|
|
int RiffInitWriteFile(const char* pszFile, unsigned int sample_rate, unsigned int NumChannels);
|
|
int RiffFinishWriteFile();
|
|
int RiffPutSamples(const short* buf, unsigned int uSamples);
|