#include <FilesSpecific.h>
Data Fields | |
boolean | busy |
busy flag. More... | |
boolean | open |
open flag. More... | |
boolean | async |
async flag. More... | |
unsigned char * | path |
path to the file. More... | |
int | fd |
the file descriptor. More... |
This is an "opaque" type that represents a file. It can be changed only through the functions described by this document. The data contained in the type contains all necessary information about the file and its state. If the file is closed, you can safely save to any long-term medium (hard disk, another computer...) the data contained in ANetFile
and re-use the data later, even after a reboot. You can get the size of the ANetFile
data structure with the sizeof operator:
sizeof(ANetFile)
Definition at line 36 of file FilesSpecific.h.
|
async flag.
Definition at line 39 of file FilesSpecific.h. Referenced by ANetGetSetFileAsync(), ANetInitFile(), and ANetOpenFile(). |
|
busy flag.
Definition at line 37 of file FilesSpecific.h. Referenced by ANetCloseFile(), ANetGetFileSize(), ANetGetSetFileAsync(), ANetGetSetFilePath(), ANetInitFile(), ANetIsFileBusy(), and ANetOpenFile(). |
|
the file descriptor.
Definition at line 41 of file FilesSpecific.h. Referenced by ANetCloseFile(), ANetGetSetFileAsync(), and ANetOpenFile(). |
|
open flag.
Definition at line 38 of file FilesSpecific.h. Referenced by ANetGetSetFilePath(), ANetInitFile(), and ANetOpenFile(). |
|
path to the file.
Definition at line 40 of file FilesSpecific.h. Referenced by ANetGetFileSize(), ANetGetSetFileAsync(), ANetGetSetFilePath(), ANetInitFile(), and ANetOpenFile(). |