src/server/daemon/vfs.h

branch
webdav
changeset 247
1df803e06076
parent 241
4adad7faf452
child 289
285d483db2fb
--- a/src/server/daemon/vfs.h	Sun May 31 13:08:42 2020 +0200
+++ b/src/server/daemon/vfs.h	Sun May 31 16:58:23 2020 +0200
@@ -60,6 +60,7 @@
 VFS_DIR sys_vfs_fdopendir(VFSContext *ctx, SYS_FILE fd);
 int sys_vfs_mkdir(VFSContext *ctx, const char *path);
 int sys_vfs_unlink(VFSContext *ctx, const char *path);
+int sys_vfs_rmdir(VFSContext *ctx, const char *path);
 
 int sys_path_op(VFSContext *ctx, const char *path, sys_op_f op);
 int sys_acl_check(VFSContext *ctx, uint32_t access_mask, SysACL *externacl);
@@ -79,6 +80,7 @@
 
 int sys_mkdir(VFSContext *ctx, const char *path, SysACL *sysacl);
 int sys_unlink(VFSContext *ctx, const char *path, SysACL *sysacl);
+int sys_rmdir(VFSContext *ctx, const char *path, SysACL *sysacl);
 
 void vfs_queue_aio(aiocb_s *aiocb, VFSAioOp op);
 

mercurial