JAM_CloseMB - Close message base
#include <jamlib/jam.h>
int JAM_CloseMB(s_JamBase* Base_PS);
Unlocks (if locked) and closes the currently open message base.
- Base_PS
- The message base to close. Note, that you must free(3) this memory
upon successful messagebase closing.
- 0
- if successful
- JAM_IO_ERROR
- if an I/O error occured. see JAM_Errno(3)
- JAM_LOCK_FAILED
- if the message base could not be unlocked
int Result_I;
Result_I = JAM_CloseMB(Base_PS);
if ( Result_I )
printf("JAM_CloseMB returned %d.\n", Result_I);
This 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>.
jamlib(3), JAM_OpenMB(3), JAM_CreateMB(3),
JAM_Errno(3)