[DllImportAttribute("DwmApi.dll", ExactSpelling = true)]
public static bool DwmDefWindowProc(
IntPtr hwnd,
uint msg,
IntPtr wParam,
IntPtr lParam,
out IntPtr refResult
)
<DllImportAttribute("DwmApi.dll", ExactSpelling := true>]
Public Shared Function DwmDefWindowProc (
hwnd As IntPtr,
msg As UInteger,
wParam As IntPtr,
lParam As IntPtr,
<OutAttribute> ByRef refResult As IntPtr
) As Boolean
Dim hwnd As IntPtr
Dim msg As UInteger
Dim wParam As IntPtr
Dim lParam As IntPtr
Dim refResult As IntPtr
Dim returnValue As Boolean
returnValue = DwmApi.DwmDefWindowProc(hwnd,
msg, wParam, lParam, refResult)
public:
[DllImportAttribute(L"DwmApi.dll", ExactSpelling = true)]
static bool DwmDefWindowProc(
IntPtr hwnd,
unsigned int msg,
IntPtr wParam,
IntPtr lParam,
[OutAttribute] IntPtr% refResult
)
[<DllImportAttribute("DwmApi.dll", ExactSpelling = true)>]
static member DwmDefWindowProc :
hwnd : IntPtr *
msg : uint32 *
wParam : IntPtr *
lParam : IntPtr *
refResult : IntPtr byref -> bool
No code example is currently available or this language may not be supported.
[Missing <param name="hwnd"/> documentation for "M:DevCase.Win32.NativeMethods.DwmApi.DwmDefWindowProc(System.IntPtr,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr@)"]