abfCloseFile()

Closes the currently open ABF file.

Syntax

void abfCloseFile();

Example

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

Comments

abfCloseFile() does not output data. To assure that data is written, use abfWriteHeader() or abfWriteHeaderAndData() before abfCloseFile().