GetBuyNowLinkW

Top  Previous  Next

This function retrieves the BuyNow link, which is specified in the IntelliProtector project. Unicode version.

 

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

 

Parameters

 

 wchar_tpwcsLinkBuffer - This is a buffer for the BuyNow link.
 int iMaxLength           - Length of the buffer.

 

Return value

 

 Returns nothing.

 

Requirements

 

 Header: IntelliProtector.h

 

Example

 

using namespace IntelliProtectorService;

// ...

 

void GetBuyNow()

{

 const int ciLinkLen = 256;

 wchar_t wcsLinkBuffer[ciLinkLen] = {0, };

 CIntelliProtector::GetBuyNowLink(wcsLinkBuffer, ciLinkLen);

 AfxMessageBox(wcsLinkBuffer);        

}

 

 

 





Copyright © 2015 IntelliProtector.com