Changeset 33439 in vbox for trunk/include
- Timestamp:
- Oct 25, 2010 7:35:58 PM (14 years ago)
- Location:
- trunk/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/shflsvc.h
r33409 r33439 965 965 #define SHFL_REMOVE_FILE (0x1) 966 966 #define SHFL_REMOVE_DIR (0x2) 967 #define SHFL_REMOVE_SYMLINK (0x4) 967 968 968 969 /** Parameters structure. */ -
trunk/include/iprt/path.h
r33337 r33439 642 642 643 643 /** 644 * Returns the destination of a symbolic link.645 *646 * @returns IPRT status code.647 * @param pszPath Path to the file system object.648 * @param pszDestLink Where to store the destination path.649 * @param cchDestLink Size of the buffer.650 */651 RTR3DECL(int) RTReadLink(const char *pszPath, char *pszDestLink, size_t cchDestLink);652 653 /**654 644 * Changes the mode flags of a file system object. 655 645 * … … 805 795 RTR3DECL(int) RTPathRename(const char *pszSrc, const char *pszDst, unsigned fRename); 806 796 807 /**808 * Creates a symlink from new path to old path.809 *810 * @returns IPRT status code.811 * @param pszNewPath The path for the new symlink.812 * @param pszOldPath The destination path for the symlink (i.e. the content of813 * pszNewPath).814 */815 RTR3DECL(int) RTSymlink(const char *pszNewPath, const char *pszOldPath);816 817 797 #endif /* IN_RING3 */ 818 798
Note:
See TracChangeset
for help on using the changeset viewer.