mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 15:37:55 -05:00
14 lines
268 B
C++
14 lines
268 B
C++
#ifndef MXSTREAMER_H
|
|
#define MXSTREAMER_H
|
|
|
|
#include "mxstreamcontroller.h"
|
|
|
|
class MxStreamer
|
|
{
|
|
public:
|
|
__declspec(dllexport) MxStreamController *Open(const char *name, unsigned short p);
|
|
__declspec(dllexport) long Close(const char *p);
|
|
|
|
};
|
|
|
|
#endif // MXSTREAMER_H
|