rxDeleteRouter
Creates a RouteX object. This object contains all of RouteX's data and is used by most other functions in the toolkit.
Synopsis
void rxDeleteRouter( RouteX Router, StatusCodeT *Status )
Arguments
Router The RouteX object you are deleting Status A pointer to a value of type StatusCodeT. If an error occurs during the execution of the function a value representing the error will be stored in *Status. You should check *Status after every function call.
Returns
Nothing.
Related Functions
Example
StatusCodeT Status;
RouterX Router;
Router = ixCreateRouter( 0x0011FFFFL, 0x0011FFFFL, &Status );
if ( *Status < 0 ) {
printerror( Status );
return; // error
}
//
// rest of program using RouteX goes here
//
ixDeleteRouter( Router, &Status );
if ( *Status < 0 ) {
printerror( Status );
return; // error
}