GetFileAttributesExW method

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

Implementation

int GetFileAttributesExW(
  ffi.Pointer<ffi.Uint16> lpFileName,
  int fInfoLevelId,
  ffi.Pointer<ffi.Void> lpFileInformation,
) {
  return _GetFileAttributesExW(
    lpFileName,
    fInfoLevelId,
    lpFileInformation,
  );
}