winamp/Src/replicant/ogg/ifc_oggaudiodecoder.h

16 lines
278 B
C
Raw Normal View History

2024-09-24 12:54:57 +00:00
#pragma once
#include "../replicant/foundation/dispatch.h"
class ifc_oggaudiodecoder : public Wasabi2::Dispatchable
{
protected:
ifc_oggaudiodecoder() : Dispatchable(DISPATCHABLE_VERSION) {}
~ifc_oggaudiodecoder() {}
public:
enum
{
DISPATCHABLE_VERSION,
GET_BPS
};
};