navStopRouteAbort (Function)

Top  Previous  Next

Architecture:

NX32 / NX32L

Device support:

MX2 turbo/encore/warp, AX9 turbo, NX-200, NX-400, NX-900, LX2, LX4, LX5

Firmware version:

4.70 / 1.30.00

Nav. API level:

14


This function will abort the construction of a route.

 

 

Input:

None.

 

 

Returns: INT

0

- Success.

-1

- The route was not open.

 

Declaration:

FUNCTION navStopRouteAbort : INT;

 

Example:

INCLUDE rtcu.inc
 
PROGRAM NavigationExample;
 
BEGIN
  ...
  // Abort construction of a route.
  navStopRouteAbort();
  ...
END;
END_PROGRAM;