EnumDesktopWindows method

int EnumDesktopWindows(
  1. Pointer<HDESK__> hDesktop,
  2. Pointer<NativeFunction<WNDENUMPROC>> lpfn,
  3. int lParam
)

Implementation

int EnumDesktopWindows(
  ffi.Pointer<HDESK__> hDesktop,
  ffi.Pointer<ffi.NativeFunction<WNDENUMPROC>> lpfn,
  int lParam,
) {
  return _EnumDesktopWindows(
    hDesktop,
    lpfn,
    lParam,
  );
}