mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-28 22:03:40 -06:00
18 lines
444 B
C
18 lines
444 B
C
//$ class Ctrl {
|
|
private:
|
|
friend struct MMCtrl;
|
|
friend struct MMImp;
|
|
|
|
static int WndCaretTime;
|
|
static bool WndCaretVisible;
|
|
static void AnimateCaret();
|
|
|
|
protected:
|
|
virtual void MMClose() { DLOG("MMClose"); }
|
|
|
|
void Create(Ctrl *owner, dword style, bool active);
|
|
|
|
public:
|
|
static void EndSession() {}
|
|
static bool IsEndSession() { return false; }
|
|
//$ };
|