GetFileAttributesExFromAppW method

int GetFileAttributesExFromAppW(
  1. Pointer<Uint16> lpFileName,
  2. int fInfoLevelId,
  3. Pointer<Void> lpFileInformation
)

Implementation

int GetFileAttributesExFromAppW(
  ffi.Pointer<ffi.Uint16> lpFileName,
  int fInfoLevelId,
  ffi.Pointer<ffi.Void> lpFileInformation,
) {
  return (_GetFileAttributesExFromAppW ??= _dylib.lookupFunction<
      _c_GetFileAttributesExFromAppW,
      _dart_GetFileAttributesExFromAppW>('GetFileAttributesExFromAppW'))(
    lpFileName,
    fInfoLevelId,
    lpFileInformation,
  );
}