SetFileAttributesTransactedW method

int SetFileAttributesTransactedW(
  1. Pointer<Uint16> lpFileName,
  2. int dwFileAttributes,
  3. Pointer<Void> hTransaction
)

Implementation

int SetFileAttributesTransactedW(
  ffi.Pointer<ffi.Uint16> lpFileName,
  int dwFileAttributes,
  ffi.Pointer<ffi.Void> hTransaction,
) {
  return _SetFileAttributesTransactedW(
    lpFileName,
    dwFileAttributes,
    hTransaction,
  );
}