mirror of
https://github.com/ClusterM/fdskey.git
synced 2025-12-19 14:29:21 +01:00
13 lines
200 B
C
13 lines
200 B
C
#ifndef IMAGE_CURSOR_H
|
|
#define IMAGE_CURSOR_H
|
|
|
|
#define IMAGE_CURSOR_WIDTH 3
|
|
#define IMAGE_CURSOR_HEIGHT 8
|
|
|
|
const unsigned char image_cursor[] =
|
|
{
|
|
0x40, 0xB6, 0x00, 0x00
|
|
};
|
|
|
|
#endif // IMAGE_CURSOR_H
|