winamp/Src/replicant/ogg/ifc_oggaudiodecoder.h
2024-09-24 14:54:57 +02:00

16 lines
278 B
C++

#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
};
};