GetFileAttributesExA method

int GetFileAttributesExA(
  1. Pointer<Int8> lpFileName,
  2. int fInfoLevelId,
  3. Pointer<Void> lpFileInformation
)

Implementation

int GetFileAttributesExA(
  ffi.Pointer<ffi.Int8> lpFileName,
  int fInfoLevelId,
  ffi.Pointer<ffi.Void> lpFileInformation,
) {
  return (_GetFileAttributesExA ??= _dylib.lookupFunction<
      _c_GetFileAttributesExA,
      _dart_GetFileAttributesExA>('GetFileAttributesExA'))(
    lpFileName,
    fInfoLevelId,
    lpFileInformation,
  );
}