GetBuyNowLinkA |
Top Previous Next |
This function retrieves the BuyNow link, which is specified in the IntelliProtector project.
static void GetBuyNowLinkA(OUT char* pchLinkBuffer, int iMaxLength);
Parameters
char* pchLinkBuffer - This is a buffer for the BuyNow link.
Return value
Returns nothing.
Requirements
Header: IntelliProtector.h
Example
using namespace IntelliProtectorService; // ...
void GetBuyNow() { const int ciLinkLen = 256; char chLinkBuffer[ciLinkLen] = {0, }; CIntelliProtector::GetBuyNowLinkA(chLinkBuffer, ciLinkLen); AfxMessageBox(chLinkBuffer); }
|
Copyright © 2015 IntelliProtector.com |