FreeBASIC
0.91.0
Main Page
Data Structures
Files
File List
Globals
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
10
if
(
__fb_ctx
.
hooks
.
getxyproc
)
11
__fb_ctx
.
hooks
.
getxyproc
( col, row );
12
else
13
fb_ConsoleGetXY
( col, row );
14
15
FB_UNLOCK
();
16
}
17
rtlib
hook_getxy.c
Generated on Thu Jan 23 2014 19:40:11 for FreeBASIC by
1.8.4