
Function reference
------------------------------------------------------------------------------
1. Open the specified F-ROM file. <Main,Alarm,Comm>
------------------------------------------------------------------------------
[Name]
aux_from_open
[Syntax]
#include <bios.h>
int aux_from_open( char *filename, char *mode ) ;
[Argument]
filename Specify the name of the C Executor file in F-ROM to
open.
mode Specify access mode.
Mode should always be read mode, "r".
[Return]
Returns zero if successful. Returns non-zero value if any error
occurs. Error occurs in the following cases.
* When the specified file does not exist.
* When the F-ROM file is already opened by aux_from_open() function.
* When the F-ROM file is already being accessed by another
application.
[Description]
This function opens a C Executor file in the F-ROM and makes it ready
to be read.
The F-ROM file which can be opened by this function is C Executor file
only. Following F-ROM file names can be specified.
* "CEX x.xM" ( specify either "0.5", "1.0", "2.0", "3.0", "4.0",
"5.0", "6.0", for "x.x" )
* "CEX?xxxx" ('?' represents a numeric character from '0' to '9')
("xxxx" represents max. 4 alpha-numeric characters)
F-ROM file name has to be specified only by upper case letters. Also,
the name should be specified in exactly eight characters. In case a
file name is shorter than 8 characters, add space characters (20H) to
make it 8 character long.