FreeBASIC  0.91.0
dev_scrn_write_wstr.c
Go to the documentation of this file.
1 /* file device */
2 
3 #include "fb.h"
4 
5 int fb_DevScrnWriteWstr( FB_FILE *handle, const FB_WCHAR* value, size_t valuelen )
6 {
7  fb_PrintBufferWstrEx( value, valuelen, 0 );
9 }
10 
12 {
14 
15  if( FB_HANDLE_SCREEN->hooks->pfnWriteWstr == NULL )
16  FB_HANDLE_SCREEN->hooks->pfnWriteWstr = fb_DevScrnWriteWstr;
17 }