mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
16 lines
311 B
C
16 lines
311 B
C
|
#ifndef LEGOVIDEOMANAGER_H
|
||
|
#define LEGOVIDEOMANAGER_H
|
||
|
|
||
|
class LegoVideoManager
|
||
|
{
|
||
|
public:
|
||
|
__declspec(dllexport) int EnableRMDevice();
|
||
|
|
||
|
__declspec(dllexport) void EnableFullScreenMovie(unsigned char a, unsigned char b);
|
||
|
|
||
|
__declspec(dllexport) void MoveCursor(int x, int y);
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // LEGOVIDEOMANAGER_H
|