FindCloseChangeNotification function kernel32

Win32Result<bool> FindCloseChangeNotification(
  1. HANDLE hChangeHandle
)

Stops change notification handle monitoring.

To learn more, see learn.microsoft.com/windows/win32/api/fileapi/nf-fileapi-findclosechangenotification.

Implementation

Win32Result<bool> FindCloseChangeNotification(HANDLE hChangeHandle) {
  final result_ = FindCloseChangeNotification_Wrapper(hChangeHandle);
  return Win32Result(value: result_.value.i32 != FALSE, error: result_.error);
}