FreeBASIC  0.91.0
io_serial.c
Go to the documentation of this file.
1 /* serial port access stubs */
2 
3 #include "../fb.h"
4 
6  (
8  int iPort,
9  FB_SERIAL_OPTIONS *options,
10  const char *pszDevice,
11  void **ppvHandle
12  )
13 {
15 }
16 
17 int fb_SerialGetRemaining( FB_FILE *handle, void *pvHandle, fb_off_t *pLength )
18 {
20 }
21 
22 int fb_SerialWrite( FB_FILE *handle, void *pvHandle, const void *data, size_t length )
23 {
25 }
26 
27 int fb_SerialRead( FB_FILE *handle, void *pvHandle, void *data, size_t *pLength )
28 {
30 }
31 
32 int fb_SerialClose( FB_FILE *handle, void *pvHandle )
33 {
35 }