Hi, so I am having this code:
// # AC26
#if PH_ACADUTIL_APIVER>=2700
GSErrCode ph::AcadGetProtData(API_ProtectionInfo& protInfo, GS::UniString* pConfNumber)
{
protInfo.keySerialNumber = ACAPI_Licensing_GetSerialNumber();
protInfo.protMode = ACAPI_Licensing_GetProtectionMode();
protInfo.numberOfLicenses = ACAPI_Licensing_GetNumberOfLicenses();
protInfo.keyBoxMask = ACAPI_Licensing_GetBoxMask();
protInfo.expirationTime = ACAPI_Licensing_GetExpirationTime();
protInfo.partnerID = ACAPI_Licensing_GetPartnerId();
if (pConfNumber) {
*pConfNumber = ACAPI_Licensing_GetConfigurationNumber();
And with my cloud nfr-license APIPROT_NFR_MASK is not set, just APIPROT_TW_MASK is:

So the question is: How to detect NFR with AC26-30? Tested with AC29.
Thank you in advance and keep on coding!
Petteri