diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2018-01-27 15:17:17 +0100 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2018-01-30 16:52:24 +0900 |
commit | ef0f0a50b2912f442f14dc2ba3c071b7122faf6e (patch) | |
tree | 40b8f9b970f72167db45f0f7aed7c33a7f706a7d /src/lib/ecore_file/Ecore_File.h | |
parent | d7170beb76d6b3a96142d3d4750afdb7fdb7d4fa (diff) |
Ecore_File: remove symlinks support on Windows (library and test)
Diffstat (limited to 'src/lib/ecore_file/Ecore_File.h')
-rw-r--r-- | src/lib/ecore_file/Ecore_File.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/lib/ecore_file/Ecore_File.h b/src/lib/ecore_file/Ecore_File.h index 39f0f7ecae..50c85eaa7e 100644 --- a/src/lib/ecore_file/Ecore_File.h +++ b/src/lib/ecore_file/Ecore_File.h | |||
@@ -319,9 +319,10 @@ EAPI Eina_Bool ecore_file_mv (const char *src, const char *dst); | |||
319 | * @param dest The name of link. | 319 | * @param dest The name of link. |
320 | * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise. | 320 | * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise. |
321 | * | 321 | * |
322 | * This function create the symbolic link @p dest of @p src. This | 322 | * This function creates the symbolic link @p dest of @p src. It returns |
323 | * function does not work on Windows. It returns @c EINA_TRUE on success, | 323 | * @c EINA_TRUE on success, @c EINA_FALSE otherwise. |
324 | * @c EINA_FALSE otherwise. | 324 | * |
325 | * @note On windows, this function always returns @c EINA_FALSE. | ||
325 | */ | 326 | */ |
326 | EAPI Eina_Bool ecore_file_symlink (const char *src, const char *dest); | 327 | EAPI Eina_Bool ecore_file_symlink (const char *src, const char *dest); |
327 | 328 | ||
@@ -426,9 +427,10 @@ EAPI Eina_Bool ecore_file_can_exec (const char *file); | |||
426 | * @return The path pointed by link or NULL. | 427 | * @return The path pointed by link or NULL. |
427 | * | 428 | * |
428 | * This function returns the path pointed by @p link as a newly | 429 | * This function returns the path pointed by @p link as a newly |
429 | * allocated string. This function does not work on Windows. On | 430 | * allocated string. On failure, the function returns @c NULL. When not |
430 | * failure, the function returns @c NULL. When not needed anymore, the | 431 | * needed anymore, the returned value must be freed. |
431 | * returned value must be freed. | 432 | * |
433 | * @note On windows, this function always returns @c NULL. | ||
432 | */ | 434 | */ |
433 | EAPI char *ecore_file_readlink (const char *link); | 435 | EAPI char *ecore_file_readlink (const char *link); |
434 | 436 | ||