This API function can be used to check whether a license list is available. A license that has already been allocated is checked, or a license from the specified list is allocated if none was already allocated.
wupi_check_license(licenseListId) -> True / False
Example: Checking LicenseList 1:
if (Wupi.CheckLicense(1))
{
Console.WriteLine("ok");
}
else
{
Console.WriteLine("missing");
}