mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-09 14:22:30 -06:00
9 lines
275 B
C
9 lines
275 B
C
//$ class Ctrl {
|
|
public:
|
|
static void InitFB();
|
|
static void DoMouseFB(int event, Point p, int zdelta = 0);
|
|
static bool DoKeyFB(dword key, int cnt);
|
|
|
|
void SetOpen(bool b) { isopen = b; }
|
|
void SetTop() { top = new Top; }
|
|
//$ };
|