/* * CaretPtr * handles a 'caret pointer' - one that changes to a 'I' shape if over a * writable icon. * * v. 1.00 (25 July 1991) * * © 1991-1998 Straylight */ /*----- Licensing note ----------------------------------------------------* * * This file is part of Straylight's Steel library. * * Steel is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * Steel is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Steel. If not, write to the Free Software Foundation, * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef __caretptr_h #define __caretptr_h #ifndef __pointer_h #include "pointer.h" #endif /* * void caretPtr(char *name,sprite_area *area,int x,int y) * * Use * Turns the caret pointer on * * Parameters * char *name == the name of the sprite to use * sprite_area *area == pointer to sprite area * int x == x position of hotspot * int y == y position of hotspot */ void caretPtr(char *name,sprite_area *area,int x,int y); /* * void caretPtrOff(void) * * Use * Turns the caretPtr off. */ void caretPtrOff(void); void caretPtr__pointer(BOOL ownIt); #endif