GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
JAM_CreateMB(3) JAM subroutine library JAM_CreateMB(3)

JAM_CreateMB - Create a new message base

#include <jamlib/jam.h>
int JAM_CreateMB(uchar*      Basename_PC,
                 ulong       BaseMsg_I,
                 s_JamBase** NewBase_PPS);

Creates the necessary files for a new message base and writes a new message base header.

If the message base already exists, its contents are destroyed.

Basename_PC
The path and base filename of the new message base.
BaseMsg_I
The base message number (first message #) for the new message base. This number is used when calculating new messages´ unique message number. It should not be set to 0.
NewBase_PPS
A pointer to a message base handle where the new message base handle will be written. On error you must free(3) this memory if (*NewBase_PPS) not NULL.

0
if successful
JAM_IO_ERROR
if an I/O error occured. See JAM_Errno(3)
JAM_LOCK_FAILED
if the newly created message base can not be locked. See JAM_Errno(3)
JAM_BAD_PARAM
if BaseMsg_I is 0 or NewBase_PPS is NULL

int Result_I;
Result_I = JAM_CreateMB("/some/where/mybase", 1, &Base_PS);
if (Result_I)
  printf("JAM_CreateMB 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_CloseMB(3), JAM_Errno(3)
2002-11-07

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.