RealGetWindowClassW method
Implementation
int RealGetWindowClassW(
ffi.Pointer<HWND__> hwnd,
ffi.Pointer<ffi.Uint16> ptszClassName,
int cchClassNameMax,
) {
return (_RealGetWindowClassW ??= _dylib.lookupFunction<
_c_RealGetWindowClassW,
_dart_RealGetWindowClassW>('RealGetWindowClassW'))(
hwnd,
ptszClassName,
cchClassNameMax,
);
}