FreeBASIC  0.91.0
dev_lpt_write_wstr.c
Go to the documentation of this file.
1 /* LPTx device */
2 
3 #include "fb.h"
4 
5 int fb_DevLptWriteWstr( FB_FILE *handle, const FB_WCHAR* value, size_t valuelen )
6 {
7  int res;
8 
9  FB_LOCK();
10 
11  res = fb_PrinterWriteWstr((DEV_LPT_INFO*) handle->opaque, value, valuelen );
12 
13  FB_UNLOCK();
14 
15  return res;
16 }