isle-portable/LEGO1/mxstreamer.h

22 lines
496 B
C
Raw Normal View History

2023-04-27 22:19:39 -04:00
#ifndef MXSTREAMER_H
#define MXSTREAMER_H
#include "mxcore.h"
2023-04-27 22:19:39 -04:00
#include "mxstreamcontroller.h"
#include "mxtypes.h"
2023-04-27 22:19:39 -04:00
// VTABLE 0x100dc710
class MxStreamer : public MxCore
2023-04-27 22:19:39 -04:00
{
public:
virtual ~MxStreamer() override;
2023-04-27 22:19:39 -04:00
__declspec(dllexport) MxStreamController *Open(const char *name, unsigned short p);
__declspec(dllexport) long Close(const char *p);
virtual long Notify(MxParam &p) override; // vtable+0x4
virtual MxResult VTable0x14() override; // vtable+0x14
2023-04-27 22:19:39 -04:00
};
#endif // MXSTREAMER_H