GetRenewalPurchaseLinkA

Top  Previous  Next

This function returns the 'purchase renewal code' link.

 

static void GetRenewalPurchaseLinkA(char* pchLinkBuffer, int iMaxLength);

 

Parameters

 

 charpchLinkBuffer - This is a buffer for the 'purchase renewal code' link.
 int iMaxLength           - Length of the buffer.

 

Return value

 

 Returns nothing. The output parameter (pchLinkBuffer) will get the link to purchase renewal code.

 

Requirements

 

 Header: IntelliProtector.h

 

Example

 

using namespace IntelliProtectorService;

// ...

 

void GetPurchaseRenewalLink()

{

 const int ciLinkLen = 256;

 char chLinkBuffer[ciLinkLen] = {0, };

 CIntelliProtector::GetRenewalPurchaseLinkA(chLinkBuffer, ciLinkLen);

 AfxMessageBox(chLinkBuffer);        

}

 

 

 





Copyright © 2015 IntelliProtector.com