Menu

[424828]: / src / rtlib / file_openlpt.c  Maximize  Restore  History

Download this file

59 lines (50 with data), 1.8 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/* open LPTx */
#include "fb.h"
static void close_printer_handle(void)
{
if( FB_HANDLE_PRINTER->hooks==NULL )
return;
FB_HANDLE_PRINTER->hooks->pfnClose( FB_HANDLE_PRINTER );
}
#if defined( HOST_WIN32 )
static const char *pszPrinterDev = "LPT:EMU=TTY";
#elif defined( HOST_LINUX )
static const char *pszPrinterDev = "LPT:";
#else
static const char *pszPrinterDev = "LPT1:";
#endif
int fb_LPrintInit(void)
{
if( FB_HANDLE_PRINTER->hooks==NULL) {
int res = fb_FileOpenVfsRawEx( FB_HANDLE_PRINTER,
pszPrinterDev,
strlen(pszPrinterDev),
FB_FILE_MODE_APPEND,
FB_FILE_ACCESS_WRITE,
FB_FILE_LOCK_READWRITE,
0,
FB_FILE_ENCOD_DEFAULT,
fb_DevLptOpen );
if( res==FB_RTERROR_OK ) {
atexit(close_printer_handle);
}
return res;
}
return fb_ErrorSetNum( FB_RTERROR_OK );
}
/*:::::*/
FBCALL int fb_FileOpenLpt ( FBSTRING *str_filename, unsigned int mode,
unsigned int access, unsigned int lock,
int fnum, int len, const char *encoding )
{
if( !FB_FILE_INDEX_VALID( fnum ) )
return fb_ErrorSetNum( FB_RTERROR_ILLEGALFUNCTIONCALL );
return fb_FileOpenVfsEx( FB_FILE_TO_HANDLE(fnum),
str_filename,
mode,
access,
lock,
len,
fb_hFileStrToEncoding( encoding ),
fb_DevLptOpen );
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.