mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 15:37:55 -05:00
279d626279
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)
24 lines
507 B
C++
24 lines
507 B
C++
#ifndef LEGOINPUTMANAGER_H
|
|
#define LEGOINPUTMANAGER_H
|
|
|
|
__declspec(dllexport) enum NotificationId
|
|
{
|
|
NONE = 0x0,
|
|
KEYDOWN = 0x7,
|
|
MOUSEUP = 0x8,
|
|
MOUSEDOWN = 0x9,
|
|
MOUSEMOVE = 0x10,
|
|
TIMER = 0xF
|
|
};
|
|
|
|
class LegoInputManager
|
|
{
|
|
public:
|
|
__declspec(dllexport) void QueueEvent(NotificationId id, unsigned char p2, long p3, long p4, unsigned char p5);
|
|
__declspec(dllexport) void Register(MxCore *);
|
|
__declspec(dllexport) void UnRegister(MxCore *);
|
|
|
|
int m_unk00[0x400];
|
|
};
|
|
|
|
#endif // LEGOINPUTMANAGER_H
|