RealGetWindowClassA method
Implementation
int RealGetWindowClassA(
ffi.Pointer<HWND__> hwnd,
ffi.Pointer<ffi.Int8> ptszClassName,
int cchClassNameMax,
) {
return (_RealGetWindowClassA ??= _dylib.lookupFunction<
_c_RealGetWindowClassA,
_dart_RealGetWindowClassA>('RealGetWindowClassA'))(
hwnd,
ptszClassName,
cchClassNameMax,
);
}