FreeBASIC
0.91.0
Main Page
Data Structures
Files
File List
Globals
hook_lineinp_wstr.c
Go to the documentation of this file.
1
/* console line input function */
2
3
#include "
fb.h
"
4
5
FBCALL
int
fb_LineInputWstr
6
(
7
const
FB_WCHAR
*text,
8
FB_WCHAR
*dst,
9
ssize_t max_chars,
10
int
addquestion,
11
int
addnewline
12
)
13
{
14
FB_LINEINPUTWPROC
fn;
15
16
FB_LOCK
();
17
fn =
__fb_ctx
.
hooks
.
lineinputwproc
;
18
FB_UNLOCK
();
19
20
if
( fn )
21
return
fn( text, dst, max_chars, addquestion, addnewline );
22
else
23
return
fb_ConsoleLineInputWstr
( text, dst, max_chars, addquestion, addnewline );
24
}
rtlib
hook_lineinp_wstr.c
Generated on Thu Jan 23 2014 19:40:11 for FreeBASIC by
1.8.4