FreeBASIC  0.91.0
hook_getxy.c
Go to the documentation of this file.
1 /* getxy entrypoint, default to console mode */
2 
3 #include "fb.h"
4 
5 /*:::::*/
6 FBCALL void fb_GetXY( int *col, int *row )
7 {
8  FB_LOCK();
9 
11  __fb_ctx.hooks.getxyproc( col, row );
12  else
13  fb_ConsoleGetXY( col, row );
14 
15  FB_UNLOCK();
16 }
17