1 /* Part of libhgfs - (c) 2009, D.C. van Moolenbroek */
7 /*===========================================================================*
9 *===========================================================================*/
10 int hgfs_mkdir(path
, mode
)
14 /* Create a new directory.
17 RPC_REQUEST(HGFS_REQ_MKDIR
);
18 RPC_NEXT8
= HGFS_MODE_TO_PERM(mode
);
25 /*===========================================================================*
27 *===========================================================================*/
34 RPC_REQUEST(HGFS_REQ_UNLINK
);
41 /*===========================================================================*
43 *===========================================================================*/
47 /* Remove an empty directory.
50 RPC_REQUEST(HGFS_REQ_RMDIR
);
57 /*===========================================================================*
59 *===========================================================================*/
60 int hgfs_rename(opath
, npath
)
64 /* Rename a file or directory.
67 RPC_REQUEST(HGFS_REQ_RENAME
);