mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 00:14:22 +00:00

This declares a bunch of classes and functions for us, as well as fixes some declarations that were slightly incorrect (e.g. missing "virtual", etc)
12 lines
236 B
C++
Executable File
12 lines
236 B
C++
Executable File
#ifndef MXVIDEOMANAGER_H
|
|
#define MXVIDEOMANAGER_H
|
|
|
|
class MxVideoManager
|
|
{
|
|
public:
|
|
__declspec(dllexport) void InvalidateRect(MxRect32 &);
|
|
__declspec(dllexport) virtual long RealizePalette(MxPalette *);
|
|
};
|
|
|
|
#endif // MXVIDEOMANAGER_H
|