/**************************************************************************/ /* */ /* OCaml */ /* */ /* File contributed by Lionel Fourquaux */ /* */ /* Copyright 2001 Institut National de Recherche en Informatique et */ /* en Automatique. */ /* */ /* All rights reserved. This file is distributed under the terms of */ /* the GNU Lesser General Public License version 2.1, with the */ /* special exception on linking described in the file LICENSE. */ /* */ /**************************************************************************/ #define CAML_INTERNALS #include #include #include #include #include "caml/unixsupport.h" #include #include CAMLprim value caml_unix_link(value follow, value path1, value path2) { BOOL result; wchar_t * wpath1, * wpath2; if (Is_some(follow) && !Bool_val(Some_val(follow))) { errno = ENOSYS; caml_uerror("link", path2); } caml_unix_check_path(path1, "link"); caml_unix_check_path(path2, "link"); wpath1 = caml_stat_strdup_to_utf16(String_val(path1)); wpath2 = caml_stat_strdup_to_utf16(String_val(path2)); result = CreateHardLink(wpath2, wpath1, NULL); caml_stat_free(wpath1); caml_stat_free(wpath2); if (! result) { caml_win32_maperr(GetLastError()); caml_uerror("link", path2); } return Val_unit; }