It was present for some time then we removed trial, it could be that we will back again at some point.
If I leave const trialFlags = TA_USER | TA_VERIFIED_TRIAL;
Should this works?
If not what changes should I make?
if (retObj === TA_OK)
return ta.TrialDaysRemaining(trialFlags);
else if (retObj === TA_E_TRIAL_EXPIRED)
{
TrialExpired();
return null;
}
else if (retObj === TA_E_NO_MORE_TRIALS_ALLOWED) {
PromptProductKey();
return null;
}
else
HardFailure("Failed to start the trial", retObj);