mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -05:00
8113a17167
* Introduce LPD3DRM_APPDATA typedef for setting d3drm appdata * Fix warning about assigning const string literals to variable char pointers * Don't cast pointers to integers on non-32-bit architectures * memset 2nd argument is int * Assume cpuid is available on x86_64, needs testing on i386 and unavailable on anything else * Store HFILE in its own member variable
41 lines
846 B
C++
41 lines
846 B
C++
#ifndef MXIO_H
|
|
#define MXIO_H
|
|
|
|
#include "mxtypes.h"
|
|
|
|
// mmsystem.h requires inclusion of windows.h before
|
|
// clang-format off
|
|
#include <windows.h>
|
|
#include <mmsystem.h>
|
|
// clang-format on
|
|
|
|
#if defined(_M_IX86) || defined(__i386__)
|
|
#define MXIO_MINFO_MFILE
|
|
#endif
|
|
|
|
// SIZE 0x48
|
|
class MXIOINFO {
|
|
public:
|
|
MXIOINFO();
|
|
~MXIOINFO();
|
|
|
|
MxU16 Open(const char*, MxULong);
|
|
MxU16 Close(MxLong);
|
|
MxLong Read(void*, MxLong);
|
|
MxLong Write(void*, MxLong);
|
|
MxLong Seek(MxLong, MxLong);
|
|
MxU16 SetBuffer(char*, MxLong, MxLong);
|
|
MxU16 Flush(MxU16);
|
|
MxU16 Advance(MxU16);
|
|
MxU16 Descend(MMCKINFO*, const MMCKINFO*, MxU16);
|
|
MxU16 Ascend(MMCKINFO*, MxU16);
|
|
|
|
// NOTE: In MXIOINFO, the `hmmio` member of MMIOINFO is used like
|
|
// an HFILE (int) instead of an HMMIO (WORD).
|
|
MMIOINFO m_info;
|
|
#ifndef MXIO_MINFO_MFILE
|
|
HFILE m_file;
|
|
#endif
|
|
};
|
|
|
|
#endif // MXIO_H
|