mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-06-16 14:15:26 -06:00
14 lines
346 B
C
14 lines
346 B
C
//$ class Ctrl {
|
|
private:
|
|
void SetImageCursor(const Image& img);
|
|
|
|
friend struct MMCtrl;
|
|
friend struct MMImp;
|
|
|
|
public:
|
|
// TODO: Temp only, remove!
|
|
void Create(const Upp::Rect& r, const char *title, bool popup);
|
|
|
|
static void EndSession() {}
|
|
static bool IsEndSession() { return false; }
|
|
//$ };
|