extLicenseRemove (Function)

Top  Previous  Next

Architecture:

NX32L

Device support:

All

Firmware version:

1.80.00


This function will remove a license.

 

 

Input:

id : STRING

The license id string to remove.

The license id is a text of up to 50 characters, which identifies the license.

To remove all licenses from the device, use "*" as the id.

 

Returns: INT

1

- The license is removed

0

- The function is not available.

 

Declaration:

FUNCTION extLicenseRemove : INT;
VAR_INPUT
  id : STRING;
END_VAR;

 

 

Example:

 

INCLUDE rtcu.inc
 
PROGRAM test;
 
 
  // Remove a license
  extLicenseRemove(id := "example.license");
 
 
END_PROGRAM;