jwtFree (Function)

Top  Previous  Next

Architecture:

NX32L

Firmware version:

1.70.00


jwtFree releases the resources used by the JWT object.

 

 

 

Input:

jwt : SYSHANDLE

A handle the JWT object to release. Will be made invalid once it has been released.

 

 

Returns: INT

1

- Success

0

- Function is not supported.

 

 

Declaration:

FUNCTION jwtFree : INT;
VAR_INPUT
   jwt   : ACCESS SYSHANDLE;
END_VAR;

 

 

Example:

INCLUDE rtcu.inc
 
PROGRAM test;
VAR
   rc  : INT;
   jwt : SYSHANDLE;
END_VAR;
 
BEGIN
   ...
   // Release JWT
   rc := jwtFree(jwt := jwt);
   ...
END;
 
END_PROGRAM;