mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-21 06:45:39 -06:00
22 lines
No EOL
334 B
C++
22 lines
No EOL
334 B
C++
#include "Local.h"
|
|
|
|
#ifdef GUI_TELPP
|
|
|
|
NAMESPACE_UPP
|
|
|
|
#define LLOG(x) LOG(x)
|
|
#define LDUMP(x) //DDUMP(x)
|
|
|
|
void Ctrl::SetMouseCursor(const Image& image)
|
|
{
|
|
GuiLock __;
|
|
if(image.GetSerialId() != fbCursorImage.GetSerialId()) {
|
|
fbCursorImage = image;
|
|
fbCursorPos = Null;
|
|
_TODO_
|
|
}
|
|
}
|
|
|
|
END_UPP_NAMESPACE
|
|
|
|
#endif |