RemovePropA method

Pointer<Void> RemovePropA(
  1. Pointer<HWND__> hWnd,
  2. Pointer<Int8> lpString
)

Implementation

ffi.Pointer<ffi.Void> RemovePropA(
  ffi.Pointer<HWND__> hWnd,
  ffi.Pointer<ffi.Int8> lpString,
) {
  return (_RemovePropA ??= _dylib
      .lookupFunction<_c_RemovePropA, _dart_RemovePropA>('RemovePropA'))(
    hWnd,
    lpString,
  );
}