slouken@1895: /* slouken@1895: SDL - Simple DirectMedia Layer slouken@2859: Copyright (C) 1997-2009 Sam Lantinga slouken@1895: slouken@1895: This library is free software; you can redistribute it and/or slouken@1895: modify it under the terms of the GNU Lesser General Public slouken@1895: License as published by the Free Software Foundation; either slouken@1895: version 2.1 of the License, or (at your option) any later version. slouken@1895: slouken@1895: This library is distributed in the hope that it will be useful, slouken@1895: but WITHOUT ANY WARRANTY; without even the implied warranty of slouken@1895: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU slouken@1895: Lesser General Public License for more details. slouken@1895: slouken@1895: You should have received a copy of the GNU Lesser General Public slouken@1895: License along with this library; if not, write to the Free Software slouken@1895: Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA slouken@1895: slouken@1895: Sam Lantinga slouken@1895: slouken@libsdl.org slouken@1895: */ slouken@1895: slouken@1895: /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * slouken@1895: * A default blank 8x8 cursor */ slouken@1895: slouken@1895: #define BLANK_CWIDTH 8 slouken@1895: #define BLANK_CHEIGHT 8 slouken@1895: #define BLANK_CHOTX 0 slouken@1895: #define BLANK_CHOTY 0 slouken@1895: slouken@1895: static unsigned char blank_cdata[8] = { 0, 0, 0, 0, 0, 0, 0, 0 }; slouken@1895: static unsigned char blank_cmask[8] = { 0, 0, 0, 0, 0, 0, 0, 0 }; slouken@1895: slouken@1895: /* vi: set ts=4 sw=4 expandtab: */