kolibrios/programs/cmm/lib/cursor.h
Kirill Lipatov (Leency) 2c8b040e97 IconEdit 0.51: tools cursor support
git-svn-id: svn://kolibrios.org@7262 a494cfbc-eb01-0410-851d-a64ba20cac60
2018-04-29 20:42:03 +00:00

56 lines
932 B
C

// cursor file should be 32x32 in default MS Windows .cur format
#ifndef INCLUDE_CURSOR_H
#define INCLUDE_CURSOR_H
#print "[include <cursor.h>]\n"
#ifndef INCLUDE_KOLIBRI_H
#include "../lib/kolibri.h"
#endif
struct CustomCursor
{
dword CursorPointer;
dword Load();
dword Set();
dword Restore();
void Delete();
};
dword CustomCursor::Load(dword CursorFilePath)
{
if (CursorPointer) return;
EAX = 37;
EBX = 4;
ECX = CursorFilePath;
EDX = 1;
$int 0x40
CursorPointer = EAX; // 0 - err, other - handle
}
dword CustomCursor::Set()
{
EAX = 37;
EBX = 5;
ECX = CursorPointer;
$int 0x40
}
dword CustomCursor::Restore()
{
if (!CursorPointer) return;
EAX = 37;
EBX = 5;
ECX = 0;
$int 0x40
CursorPointer = 0;
}
void CustomCursor::Delete()
{
EAX = 37;
EBX = 6;
ECX = CursorPointer;
$int 0x40
}
#endif