1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-03-27 05:37:25 +00:00

Add missing decoder method declarations

This commit is contained in:
Chris Robinson 2012-12-28 11:26:41 -08:00
parent 85850c7440
commit 1dd9276ceb
2 changed files with 2 additions and 0 deletions

View File

@ -21,6 +21,7 @@ namespace MWSound
virtual void open(const std::string &fname);
virtual void close();
virtual std::string getName();
virtual void getInfo(int *samplerate, ChannelConfig *chans, SampleType *type);
virtual size_t read(char *buffer, size_t bytes);

View File

@ -34,6 +34,7 @@ namespace MWSound
virtual void open(const std::string &fname);
virtual void close();
virtual std::string getName();
virtual void getInfo(int *samplerate, ChannelConfig *chans, SampleType *type);
virtual size_t read(char *buffer, size_t bytes);