mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
6e18d1b41f
* ci: no need to do a final cd * MxDSAction has a setAtomId method * Implement the MxOmniCreateParamBase destructor inline Because of this, ISLE should no longer have to compile mxomnicreateparambase.obj. I didn't modify isle.mak, because I don't have the MSVC 4.20 GUI set-up. * Replace 256 with sizeof(...) * Format DefWndProc calls in WndProc * Replace magic mask in WNDPROC with macro's * Replace magic numbers in main.cpp with macro's * MOUSEMOVE notification id is 10 instead of 0x10 * Lowercase all windows includes such that mingw32 on Linux can find these * Convert ISLE/res/isle.rc to utf-8, and add a comma needed by mingw32 * mingw32 cannot use a enum without previous declaration * minor adjustments --------- Co-authored-by: itsmattkc <34096995+itsmattkc@users.noreply.github.com>
25 lines
636 B
C++
25 lines
636 B
C++
#ifndef MXOMNICREATEPARAM_H
|
|
#define MXOMNICREATEPARAM_H
|
|
|
|
#include <windows.h>
|
|
|
|
#include "mxomnicreateflags.h"
|
|
#include "mxomnicreateparambase.h"
|
|
#include "mxstring.h"
|
|
#include "mxvideoparam.h"
|
|
|
|
class MxOmniCreateParam : public MxOmniCreateParamBase
|
|
{
|
|
public:
|
|
__declspec(dllexport) MxOmniCreateParam(const char *mediaPath, struct HWND__ *windowHandle, MxVideoParam &vparam, MxOmniCreateFlags flags);
|
|
|
|
const MxOmniCreateFlags& CreateFlags() const { return this->m_createFlags; }
|
|
|
|
private:
|
|
MxString m_mediaPath;
|
|
HWND m_windowHandle;
|
|
MxVideoParam m_videoParam;
|
|
MxOmniCreateFlags m_createFlags;
|
|
};
|
|
|
|
#endif // MXOMNICREATEPARAM_H
|