Subversion Repositories Kolibri OS

Rev

Rev 4497 | Rev 5676 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4497 Rev 5598
Line 1... Line 1...
1
// cursor file should be 32x32 in default MS Windows .cur format
1
// cursor file should be 32x32 in default MS Windows .cur format
-
 
2
#ifndef INCLUDE_CURSOR_H
-
 
3
#define INCLUDE_CURSOR_H
-
 
4
 
-
 
5
#ifndef INCLUDE_KOLIBRI_H
-
 
6
#include "../lib/kolibri.h"
-
 
7
#endif
Line 2... Line 8...
2
 
8
 
3
struct CustomCursor
9
struct CustomCursor
4
{
10
{
5
    dword CursorPointer;
11
    dword CursorPointer;
Line 41... Line 47...
41
    EAX = 37;
47
    EAX = 37;
42
    EBX = 6;
48
    EBX = 6;
43
    ECX = CursorPointer;
49
    ECX = CursorPointer;
44
    $int 0x40
50
    $int 0x40
45
}
51
}
-
 
52
 
-
 
53
#endif
46
54