slouken@1895
|
1 |
/*
|
slouken@1895
|
2 |
SDL - Simple DirectMedia Layer
|
slouken@1895
|
3 |
Copyright (C) 1997-2006 Sam Lantinga
|
slouken@1895
|
4 |
|
slouken@1895
|
5 |
This library is free software; you can redistribute it and/or
|
slouken@1895
|
6 |
modify it under the terms of the GNU Lesser General Public
|
slouken@1895
|
7 |
License as published by the Free Software Foundation; either
|
slouken@1895
|
8 |
version 2.1 of the License, or (at your option) any later version.
|
slouken@1895
|
9 |
|
slouken@1895
|
10 |
This library is distributed in the hope that it will be useful,
|
slouken@1895
|
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
slouken@1895
|
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
slouken@1895
|
13 |
Lesser General Public License for more details.
|
slouken@1895
|
14 |
|
slouken@1895
|
15 |
You should have received a copy of the GNU Lesser General Public
|
slouken@1895
|
16 |
License along with this library; if not, write to the Free Software
|
slouken@1895
|
17 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
slouken@1895
|
18 |
|
slouken@1895
|
19 |
Sam Lantinga
|
slouken@1895
|
20 |
slouken@libsdl.org
|
slouken@1895
|
21 |
*/
|
slouken@1895
|
22 |
|
slouken@1895
|
23 |
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
slouken@1895
|
24 |
* A default blank 8x8 cursor */
|
slouken@1895
|
25 |
|
slouken@1895
|
26 |
#define BLANK_CWIDTH 8
|
slouken@1895
|
27 |
#define BLANK_CHEIGHT 8
|
slouken@1895
|
28 |
#define BLANK_CHOTX 0
|
slouken@1895
|
29 |
#define BLANK_CHOTY 0
|
slouken@1895
|
30 |
|
slouken@1895
|
31 |
static unsigned char blank_cdata[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
|
slouken@1895
|
32 |
static unsigned char blank_cmask[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
|
slouken@1895
|
33 |
|
slouken@1895
|
34 |
/* vi: set ts=4 sw=4 expandtab: */
|