Oops, forgot to fix IDataStream's Open() method param names.

This commit is contained in:
casey 2016-06-04 14:21:27 -07:00
parent fdd3a030c3
commit 6a6f7fe24d

View File

@ -44,7 +44,7 @@ namespace musik { namespace core { namespace io {
class IDataStream {
public:
virtual bool Open(const char *filename, unsigned int options = 0) = 0;
virtual bool Open(const char *uri, unsigned int options = 0) = 0;
virtual bool Close() = 0;
virtual void Destroy() = 0;
virtual PositionType Read(void *buffer, PositionType readBytes) = 0;