CreateHardLinkW method

int CreateHardLinkW(
  1. Pointer<Uint16> lpFileName,
  2. Pointer<Uint16> lpExistingFileName,
  3. Pointer<SECURITY_ATTRIBUTES> lpSecurityAttributes
)

Implementation

int CreateHardLinkW(
  ffi.Pointer<ffi.Uint16> lpFileName,
  ffi.Pointer<ffi.Uint16> lpExistingFileName,
  ffi.Pointer<SECURITY_ATTRIBUTES> lpSecurityAttributes,
) {
  return _CreateHardLinkW(
    lpFileName,
    lpExistingFileName,
    lpSecurityAttributes,
  );
}