Поделиться через


AfxSocketInit

Call this function in your CWinApp::InitInstance override to initialize Windows Sockets.

BOOL AfxSocketInit(
   WSADATA* lpwsaData = NULL 
);

Параметры

  • lpwsaData
    A pointer to a WSADATA structure. If lpwsaData is not equal to NULL, then the address of the WSADATA structure is filled by the call to WSAStartup. This function also ensures that WSACleanup is called for you before the application terminates.

Возвращаемое значение

Nonzero if the function is successful; otherwise 0.

Пример

if (!AfxSocketInit())
{
   AfxMessageBox(_T("Failed to Initialize Sockets"), MB_OK | MB_ICONSTOP);
   return FALSE;
}

Требования

Header: afxsock.h

См. также

Основные понятия

MFC Macros and Globals

CWinApp::InitInstance