C++判断网络是否连接

#include "Wininet.h"
bool    isConnected()
{
    DWORD   flag;
    bool    con = InternetGetConnectedState(&flag, 0);
    return con;
}

你可能感兴趣的:(c++,C语言)