2023-04-27 22:19:39 -04:00
|
|
|
#ifndef MXOMNICREATEPARAM_H
|
|
|
|
#define MXOMNICREATEPARAM_H
|
|
|
|
|
|
|
|
#include <Windows.h>
|
|
|
|
|
|
|
|
#include "mxomnicreateflags.h"
|
2023-04-29 23:39:01 -04:00
|
|
|
#include "mxomnicreateparambase.h"
|
2023-04-27 22:19:39 -04:00
|
|
|
#include "mxstring.h"
|
|
|
|
#include "mxvideoparam.h"
|
|
|
|
|
2023-04-29 23:39:01 -04:00
|
|
|
class MxOmniCreateParam : public MxOmniCreateParamBase
|
2023-04-27 22:19:39 -04:00
|
|
|
{
|
|
|
|
public:
|
2023-06-17 16:03:09 -04:00
|
|
|
__declspec(dllexport) MxOmniCreateParam(const char *mediaPath, struct HWND__ *windowHandle, MxVideoParam &vparam, MxOmniCreateFlags flags);
|
2023-06-13 20:22:42 -04:00
|
|
|
// virtual void vtable00(); seems to be a destructor
|
|
|
|
|
|
|
|
const MxOmniCreateFlags& CreateFlags() const { return this->m_createFlags; }
|
2023-04-27 22:19:39 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
MxString m_mediaPath;
|
|
|
|
HWND m_windowHandle;
|
|
|
|
MxVideoParam m_videoParam;
|
|
|
|
MxOmniCreateFlags m_createFlags;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MXOMNICREATEPARAM_H
|