|
||
BOOLEAN tfile_open ( char *tfile_path )
char *tfile_path; // A pointer to a null-terminated character string
|
|
|
Synopsis |
#include "silver.h"
The tfile_open function opens a compiled text file (see tfile_make), or tfile. If another tfile is open when this function is called, then that file is automatically closed.
|
|
Parameters |
tfile_path is a pointer to a null-terminated string that holds the path to the tfile.
|
|
Return Value |
tfile_open returns TRUE if the tfile was successfully opened, and FALSE otherwise.
|
|
Remarks |
A tfile, once opened, remains open until it is closed.
|
|
See Also |
|