본문 바로가기
IT-개발,DB

[개발/VC] 인터넷 연결체크

by SB리치퍼슨 2011. 9. 27.
// 인터넷 연결체크

// #include <wininet.h>
// #pragma comment(lib, "wininet.lib")

BOOL IsConnectedInternet()
{
DWORD dwFlag;
BOOL bChkInternet = InternetGetConnectedState(&dwFlags, 0);
if (!bChkInternet)
{
AfxMessageBox("It is not conntected to internet");
return FALSE;
}
return TRUE;
}

반응형

댓글