mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-13 19:51:16 +00:00
* Use more forward declarations * Use more forward declarations * Add more forward declarations * Fix
21 lines
458 B
C++
21 lines
458 B
C++
#include "mxomnicreateparam.h"
|
|
|
|
#include "decomp.h"
|
|
|
|
DECOMP_SIZE_ASSERT(MxOmniCreateParam, 0x40)
|
|
|
|
// FUNCTION: LEGO1 0x100b0b00
|
|
// FUNCTION: BETA10 0x10130b6b
|
|
MxOmniCreateParam::MxOmniCreateParam(
|
|
const char* p_mediaPath,
|
|
struct HWND__* p_windowHandle,
|
|
MxVideoParam& p_vparam,
|
|
MxOmniCreateFlags p_flags
|
|
)
|
|
{
|
|
this->m_mediaPath = p_mediaPath;
|
|
this->m_windowHandle = (HWND) p_windowHandle;
|
|
this->m_videoParam = p_vparam;
|
|
this->m_createFlags = p_flags;
|
|
}
|