InetSendSizeWinCmd Example for C++ 5.0 and later
short nRet;
CString csOut;
nRet = m_pRasterInet->InetSendSizeWinCmd(999,
1, 0, 0, 100, 100);
if((nRet != 0) && (nRet != ERROR_DATA_QUEUED))
{
csOut.Format(TEXT("ERROR %d calling InetSendSizeWinCmd."), nRet);
AfxMessageBox(csOut);
}
else
AfxMessageBox(TEXT("InetSendSizeWinCmd executed."));