mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 15:37:55 -05:00
279d626279
This declares a bunch of classes and functions for us, as well as fixes some declarations that were slightly incorrect (e.g. missing "virtual", etc)
17 lines
534 B
C++
Executable file
17 lines
534 B
C++
Executable file
#ifndef MXOMNI_H
|
|
#define MXOMNI_H
|
|
|
|
class MxOmni
|
|
{
|
|
public:
|
|
__declspec(dllexport) static void DestroyInstance();
|
|
__declspec(dllexport) static const char * GetCD();
|
|
__declspec(dllexport) static const char * GetHD();
|
|
__declspec(dllexport) static MxOmni * GetInstance();
|
|
__declspec(dllexport) static unsigned char IsSound3D();
|
|
__declspec(dllexport) static void SetCD(const char *s);
|
|
__declspec(dllexport) static void SetHD(const char *s);
|
|
__declspec(dllexport) static void SetSound3D(unsigned char);
|
|
};
|
|
|
|
#endif // MXOMNI_H
|