mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-12-01 04:27:16 +01:00
16 lines
278 B
C++
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
|
|
};
|
|
}; |