aboutsummaryrefslogtreecommitdiff
path: root/include/uv.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/uv.h')
-rw-r--r--include/uv.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/include/uv.h b/include/uv.h
index 9fb52e47..2e8072fd 100644
--- a/include/uv.h
+++ b/include/uv.h
@@ -1274,7 +1274,8 @@ typedef enum {
UV_FS_READDIR,
UV_FS_CLOSEDIR,
UV_FS_STATFS,
- UV_FS_MKSTEMP
+ UV_FS_MKSTEMP,
+ UV_FS_LUTIME
} uv_fs_type;
struct uv_dir_s {
@@ -1447,6 +1448,12 @@ UV_EXTERN int uv_fs_futime(uv_loop_t* loop,
double atime,
double mtime,
uv_fs_cb cb);
+UV_EXTERN int uv_fs_lutime(uv_loop_t* loop,
+ uv_fs_t* req,
+ const char* path,
+ double atime,
+ double mtime,
+ uv_fs_cb cb);
UV_EXTERN int uv_fs_lstat(uv_loop_t* loop,
uv_fs_t* req,
const char* path,