sevCloseXmlFile
sevCloseXmlFile(
t_stateFile
)
Description
Closes the specified XML state handle.
Arguments
Value Returned
Examples
Closes the XML state file. This example includes a combination of open and close functions.
directory = "/home/user"
// Specifies the user’s directory
stateFile = strcat(directory "/xml.state")
stateHandle = sevOpenXmlFile(stateFile)
// The above function statements returns a handle for the XML state file
...
sevCloseXmlFile(stateHandle)
// closes the given XML state handle.
Return to top