FileStruct is a structure allocated for each file handle
Compatibility:This function is compatible with the following targets:
|
ANSI
|
BeOS
|
EMB/RTOS
|
Mac OS
|
Palm OS
|
|
#include <crtl.h>
typedef struct
{
  void *handle;
char translate;
char append;
} FileStruct;  
extern FileStruct *_HandleTable[NUM_HANDLES];
extern int _HandPtr;Remarks:
The variable _HandPtr is a pointer to a table of handles.
The variable NUM_HANDLES lists the number of possible handles.