#include <IO.h> int allocate( GapIO *io, GCardinal type);
These allocate and deallocate records in the g database.
Th allocate
function allocates a new record from the g database. It
finds a free record, or creates a new record, and returns this record number.
The record will be automatically locked for exclusive read/write access. The
type of the record is sent in type. This must be one of following:
GT_Text
GT_Data
GT_Array
GT_Bitmap
GT_Database
GT_Contigs
GT_Readings
GT_Vectors
GT_Annotations
GT_Templates
GT_Clones
The function does not initialise or even write the new record to disk. The
record number is valid, but a GT_Read
call will produce an error. It is
up to the caller to initialise the structure and perform the first
GT_Write
(or equivalent) call.
It returns the record number for success, and terminates the program for failure.