Query: xdf_open
OS: debian
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
XDF_OPEN(3) xdffileio library manual XDF_OPEN(3)NAMExdf_open - Open a xDF file for reading or writingSYNOPSIS#include <xdfio.h> struct xdf* xdf_open(const char* filename, int mode, enum xdffiletype type);DESCRIPTIONxdf_open() opens a xDF the file refered by the path filename for reading or writing. If mode is XDF_READ, the file is opened for reading. Thus it must exist and type should be either XDF_ANY or set to the type of the file refered by type. Otherwise, the function will fail. If mode is XDF_WRITE, the file is opened for writing. Thus the path filename must not refered to an existing file: the function will fail if the file exist. This behavior prevents to overwrite any previous recording. type should be also be set to the desired type of data for- mat (XDF_ANY will result in a error). The possible file type values are defined in the header file <xdfio.h>RETURN VALUEThe function returns an handle to xDF file opened in case of success. Otherwise, NULL is returned and errno is set appropriately.ERRORSIn addition to the errors related to calls to open(3) or read(3), the following errors can occur: EILSEQ The file that is being opened does not correspond to a supported file format or is not of the type specified. ENOMEM The system is unable to allocate resources. EINVAL mode is neither XDF_READ nor XDF_WRITE, or filename is NULL.SEE ALSOxdf_close(3)EPFL2010 XDF_OPEN(3)
Related Man Pages |
---|
xdf_get_conf(3) - debian |
xdf_prepare_transfer(3) - debian |
xdf_set_chconf(3) - debian |
xdf_seek(3) - debian |
xdf_set_conf(3) - debian |
Similar Topics in the Unix Linux Community |
---|
file wont execute |
unable to access infodoc!! |
Script to force close sheet opened by someone else |
Removing \r and \n during reading file through while loop |