2023-06-11 21:03:54 -04:00
|
|
|
#ifndef MXIOINFO_H
|
|
|
|
#define MXIOINFO_H
|
|
|
|
|
2023-06-27 22:04:07 -04:00
|
|
|
#include <windows.h>
|
2023-07-02 04:05:49 -04:00
|
|
|
#include <mmsystem.h>
|
2023-06-27 22:04:07 -04:00
|
|
|
|
2023-07-02 04:05:49 -04:00
|
|
|
#include "mxtypes.h"
|
2023-06-27 22:04:07 -04:00
|
|
|
|
2023-06-11 21:03:54 -04:00
|
|
|
class MXIOINFO
|
|
|
|
{
|
|
|
|
public:
|
2023-06-27 14:44:02 -04:00
|
|
|
MXIOINFO();
|
2023-06-11 21:03:54 -04:00
|
|
|
__declspec(dllexport) ~MXIOINFO();
|
2023-06-27 14:44:02 -04:00
|
|
|
|
2023-07-02 05:07:11 -04:00
|
|
|
MxU16 Open(const char *filename, DWORD fdwOpen);
|
2023-07-02 04:05:49 -04:00
|
|
|
void Close(MxLong arg);
|
2023-06-27 14:44:02 -04:00
|
|
|
LONG Seek(LONG lOffset, int iOrigin);
|
2023-07-02 04:05:49 -04:00
|
|
|
MxULong Read(HPSTR pch, LONG cch);
|
2023-06-27 14:44:02 -04:00
|
|
|
void SetBuffer(LPSTR pchBuffer, LONG cchBuffer, LONG unk);
|
2023-07-02 05:07:11 -04:00
|
|
|
MxU16 Descend(LPMMCKINFO pmmcki, const MMCKINFO *pmmckiParent, UINT fuDescend);
|
2023-06-27 14:44:02 -04:00
|
|
|
|
|
|
|
MMIOINFO m_info;
|
2023-06-11 21:03:54 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MXIOINFO_H
|