abfOpenFile()

Opens an ABF file.

Syntax

intabfOpenFile(const char *path);

Inputs

path
The full path of the file to be opened.

Return Value

0
On success
1
On failure

Example

int ret;
ret = abfOpenFile("output.bin");
if (ret)
{
/* post error message */
}