[DllImport("user32.dll", SetLastError=true)]
static extern IntPtr GetDC(IntPtr hWnd);
<DllImport("user32.dll")> _
Public Shared Function GetDC(ByVal hwnd As IntPtr) As IntPtr
End Function
Public Declare Function GetDC Lib "user32.dll" _
(ByVal hWnd As Long) As Long