GetRenewalPurchaseLinkW

Top  Previous  Next

This function returns the 'purchase renewal code' link. Unicode version.

 

static void GetRenewalPurchaseLinkW(OUT wchar_t* pwcsLinkBuffer, int iMaxLength);

 

Parameters

 

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

 

Return value

 

 Returns nothing.

 

Requirements

 

 Header: IntelliProtector.h

 

Example

 

using namespace IntelliProtectorService;

// ...

 

void GetPurchaseRenewalLink()

{

 const int ciLinkLen = 256;

 wchar_t wcsLinkBuffer[ciLinkLen] = {0, };

 CIntelliProtector::GetRenewalPurchaseLinkW(wcsLinkBuffer, ciLinkLen);

 AfxMessageBox(wcsLinkBuffer);        

}

 

 

 





Copyright © 2015 IntelliProtector.com