Changeset 686 for libcaca/trunk/caca/graphics.c
- Timestamp:
- Mar 24, 2006, 4:00:47 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/caca/graphics.c
r672 r686 144 144 } 145 145 146 /** \brief Show cursor on capable drivers 147 * 148 * This function shows the cursor on drivers permitting it. 149 * 150 */ 151 void caca_show_cursor(caca_t *kk) 152 { 153 if(kk->drv.show_cursor) 154 kk->drv.show_cursor(kk); 155 } 156 157 /** \brief Hide cursor on capable drivers 158 * 159 * This function hides the cursor on drivers permitting it. 160 * 161 */ 162 void caca_hide_cursor(caca_t *kk) 163 { 164 if(kk->drv.show_cursor) 165 kk->drv.show_cursor(kk); 166 } 167 168 146 169 /* 147 170 * XXX: following functions are local
Note: See TracChangeset
for help on using the changeset viewer.