set_mouse_sprite - Man Page
Sets the mouse sprite. Allegro game programming library.
Synopsis
#include <allegro.h>
void set_mouse_sprite(BITMAP *sprite);
Description
You don't like Allegro's mouse pointer? No problem. Use this function to supply an alternative of your own. If you change the pointer and then want to get Allegro's lovely arrow back again, call set_mouse_sprite(NULL).
As a bonus, set_mouse_sprite(NULL) uses the current palette in choosing colors for the arrow. So if your arrow mouse sprite looks ugly after changing the palette, call set_mouse_sprite(NULL).
See Also
install_mouse(3), show_mouse(3), set_mouse_sprite_focus(3), exmouse(3)
Referenced By
disable_hardware_cursor(3), enable_hardware_cursor(3), exmouse(3), mouse_sprite(3), select_mouse_cursor(3), set_mouse_cursor_bitmap(3), set_mouse_sprite_focus(3), show_mouse(3).