2023-04-27 22:19:39 -04:00
|
|
|
#ifndef LEGOVIDEOMANAGER_H
|
|
|
|
#define LEGOVIDEOMANAGER_H
|
|
|
|
|
2023-06-24 13:09:46 -04:00
|
|
|
#include "mxvideomanager.h"
|
2023-06-18 07:45:39 -04:00
|
|
|
#include "lego3dmanager.h"
|
|
|
|
|
2023-06-24 13:09:46 -04:00
|
|
|
class LegoVideoManager : public MxVideoManager
|
2023-04-27 22:19:39 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
__declspec(dllexport) int EnableRMDevice();
|
2023-04-29 23:37:12 -04:00
|
|
|
__declspec(dllexport) int DisableRMDevice();
|
2023-04-27 22:19:39 -04:00
|
|
|
__declspec(dllexport) void EnableFullScreenMovie(unsigned char a, unsigned char b);
|
|
|
|
__declspec(dllexport) void MoveCursor(int x, int y);
|
|
|
|
|
2023-06-18 07:45:39 -04:00
|
|
|
inline Lego3DManager *Get3DManager() { return this->m_3dManager; }
|
|
|
|
|
2023-04-29 23:37:12 -04:00
|
|
|
int m_unk64;
|
2023-06-18 07:45:39 -04:00
|
|
|
Lego3DManager *m_3dManager;
|
2023-04-29 23:37:12 -04:00
|
|
|
int m_unk6c;
|
|
|
|
int m_unk70;
|
|
|
|
int *m_unk74;
|
2023-04-27 22:19:39 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LEGOVIDEOMANAGER_H
|