[DllImportAttribute("User32.dll", CharSet = CharSet.Auto, BestFitMapping = false,
ThrowOnUnmappableChar = true, SetLastError = true)]
public static uint RealGetWindowClass(
IntPtr hwnd,
StringBuilder className,
uint classNameMax
)
<DllImportAttribute("User32.dll", CharSet := CharSet.Auto, BestFitMapping := false,
ThrowOnUnmappableChar := true, SetLastError := true>]
Public Shared Function RealGetWindowClass (
hwnd As IntPtr,
className As StringBuilder,
classNameMax As UInteger
) As UInteger
Dim hwnd As IntPtr
Dim className As StringBuilder
Dim classNameMax As UInteger
Dim returnValue As UInteger
returnValue = User32.RealGetWindowClass(hwnd,
className, classNameMax)
public:
[DllImportAttribute(L"User32.dll", CharSet = CharSet::Auto, BestFitMapping = false,
ThrowOnUnmappableChar = true, SetLastError = true)]
static unsigned int RealGetWindowClass(
IntPtr hwnd,
StringBuilder^ className,
unsigned int classNameMax
)
[<DllImportAttribute("User32.dll", CharSet = CharSet.Auto, BestFitMapping = false,
ThrowOnUnmappableChar = true, SetLastError = true)>]
static member RealGetWindowClass :
hwnd : IntPtr *
className : StringBuilder *
classNameMax : uint32 -> uint32
No code example is currently available or this language may not be supported.
[Missing <param name="hwnd"/> documentation for "M:DevCase.Win32.NativeMethods.User32.RealGetWindowClass(System.IntPtr,System.Text.StringBuilder,System.UInt32)"]