palm-os-sdk/handera-105/examples/ExampleJ/Src/Wave.h
Tavisco 1c2f65cd40 Renamed handera-sdk-105 to handera-105
Its obviously a SDK, no need to repeat it :P
2023-11-16 22:06:58 -03:00

28 lines
824 B
C

/****************************************************************************
* File : Wave.h
* Date : 8-30-00
* Description :
****************************************************************************/
#ifndef _WAVE_H_
#define _WAVE_H_
/*------------------------------------------------------------------------
* Hard code to first volume for this example, actual apps need to iterate
* through all the volumes.
*----------------------------------------------------------------------*/
#define VOLUME_REF_NUM 1
void WaveInit (void);
Err WaveOpen (char *filename);
Err WaveCreate(char *filename);
void WaveClose (void);
Err WavePlay (void);
Err WavePause (void);
Err WaveRecord(void);
Err WaveStop (void);
Err WaveSeek (UInt16 percent);
#endif