EnableWindow method

int EnableWindow(
  1. Pointer<HWND__> hWnd,
  2. int bEnable
)

Implementation

int EnableWindow(
  ffi.Pointer<HWND__> hWnd,
  int bEnable,
) {
  return _EnableWindow(
    hWnd,
    bEnable,
  );
}