mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 08:08:03 -05:00
e16249b672
* define MxLong/MxULong The "long" type has different sizes on different platforms, and this may cause issues. * use DWORD to match RegQueryValueExA arg
21 lines
491 B
C++
21 lines
491 B
C++
#ifndef MXSTREAMER_H
|
|
#define MXSTREAMER_H
|
|
|
|
#include "mxcore.h"
|
|
#include "mxstreamcontroller.h"
|
|
#include "mxtypes.h"
|
|
|
|
// VTABLE 0x100dc710
|
|
class MxStreamer : public MxCore
|
|
{
|
|
public:
|
|
virtual ~MxStreamer() override;
|
|
|
|
__declspec(dllexport) MxStreamController *Open(const char *name, unsigned short p);
|
|
__declspec(dllexport) MxLong Close(const char *p);
|
|
|
|
virtual MxLong Notify(MxParam &p) override; // vtable+0x4
|
|
virtual MxResult VTable0x14(); // vtable+0x14
|
|
};
|
|
|
|
#endif // MXSTREAMER_H
|