C#QQ号批量注册(三)
判断宽带连接方式的类:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace QQ号批量注册
{
class judgeBroadband
{
public const int INTERNET_CONNECTION_MODEM = 1;
public const int INTERNET_CONNECTION_LAN = 2;
[System.Runtime.InteropServices.DllImport("wininet.dll")]
public static extern bool InternetGetConnectedState(
ref int dwFlag,
int dwReserved
);
}
}
转载请注明文章来自:程序猴(http://www.chengxuhou.com/)
posted on 2012-09-23 23:46 程序猴chengxuhou.com 阅读(443) 评论(0) 编辑 收藏 举报