![]() |
![]()
| ![]() |
![]()
NAMEJAM_Errno - Specify I/O error SYNOPSIS#include <jamlib/jam.h> int JAM_Errno(s_JamBase* Base_PS); DESCRIPTIONWhen any of these library routines return JAM_IO_ERROR, you can call this function to find out exactly what went wrong. Arguments
RETURN VALUEStandard ´errno´ values, as the C compiler generated them, or if the I/O error was system specific, the return code is (10000 + system status code). EXAMPLESint Result_I; uchar Text_AC[10]; /* generate an I/O error */ Result_I = JAM_ReadMsgText(0xffffffff, 10, Text_AC); if (Result_I) { AUTHORThis manual page was created by Sir Raorn <raorn@altlinux.ru>, based on original JAMlib documentation by Bjorn Stenberg <bjorn@haxx.nu> and Johan Billing <billing@df.lth.se>. SEE ALSOjamlib(3), errno(3)
|