■ GetDeviceCaps API 함수를 선언하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#region 장치 정보 구하기 - GetDeviceCaps(deviceContextHandle, index) /// <summary> /// 장치 정보 구하기 /// </summary> /// <param name="deviceContextHandle">디바이스 컨텍스트 핸들</param> /// <param name="index">인덱스</param> /// <returns>장치 정보</returns> [DllImport("gdi32")] private static extern int GetDeviceCaps(IntPtr deviceContextHandle, int index); #endregion |