FreeBASIC  0.91.0
con_print_raw_wstr.c
Go to the documentation of this file.
1 /* print raw data - no interpretation is done */
2 
3 #include "fb.h"
4 
5 #define FB_CONPRINTRAW fb_ConPrintRawWstr
6 #define FB_TCHAR FB_WCHAR
7 #define FB_CON_HOOK_TWRITE Write
8 #define FB_TCHAR_ADVANCE( iter, count ) \
9  iter += count
10 
11 #include "con_print_raw_uni.h"