[<<Previous Entry]
[^^Up^^]
[Next Entry>>]
[Menu]
[About The Guide]
##############################################################################
###+----------+###############################################################
#+-| FB_CLOSE |---------------------------------------------+#################
#| +----------+ Closes a binary file associated with handle |#################
#+----------------------------------------------------------+#################
##############################################################################
##############################################################################
#+--| Summary |----------------+##############################################
#| #INCLUDE fileio.hdr |##############################################
#+-----------------------------+##############################################
##############################################################################
##############################################################################
#+--| Syntax |---------------------------+####################################
#| PROCEDURE fb_close PROTOTYPE |####################################
#| PARAMETERS VALUE UINT handle |####################################
#+---------------------------------------+####################################
##############################################################################
##############################################################################
##########+---| Description |--------------------------------------+##########
##########| The fb_close procedure closes a binary file associated |##########
##########| with handle. The handle must have been opened |##########
##########| originally by the fb_open() function. |##########
##########| ------------------------------------------------------ |##########
##########| You do not need to close the DOS predefined handles, |##########
##########| STD_IN, STD_OUT, etc. see fb_read() for more details |##########
##########| on the DOS predefined file handles. |##########
##########+--------------------------------------------------------+##########
##############################################################################
##############################################################################
#########+--| Example 1 |-------------------------------------------+#########
#########| * Close a file handle. |#########
#########| |#########
#########| IF .NOT. fb_open( handle, &F_READ_WRITE ) |#########
#########| DO get_data WITH handle |#########
#########| fb_close( handle ) |#########
#########| ENDIF |#########
#########+----------------------------------------------------------+#########
##############################################################################
##############################################################################
#########+--| Example 2 |-------------------------------------------+#########
#########| * Handles may be stored in a UINT array. |#########
#########| |#########
#########| VARDEF |#########
#########| UINT h[10] |#########
#########| ENDDEF |#########
#########| |#########
#########| {...} |#########
#########| |#########
#########| FOR r = 0 TO 9 |#########
#########| fb_close( h[r] ) |#########
#########| NEXT |#########
#########+----------------------------------------------------------+#########
##############################################################################
See Also:
fb_eof()
fb_open()
fb_read()
fb_seek()
fb_write()
This page created by ng2html v1.05, the Norton guide to HTML conversion utility.
Written by Dave Pearson