[C#/WIN32] InternetGetConnectedState API 함수 선언하기
■ InternetGetConnectedState API 함수를 선언하는 방법을 보여준다. ▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
using System.Runtime.InteropServices; #region 인터넷 연결 상태 구하기 - InternetGetConnectedState(description, reservedValue) /// <summary> /// 인터넷 연결 상태 구하기 /// </summary> /// <param name="description">설명/param> /// <param name="reservedValue">예약 값</param> /// <returns>인터넷 연결 상태</returns> [DllImport("wininet")] private extern static bool InternetGetConnectedState(out int description, int reservedValue); #endregion |