Changeset 44615 in vbox for trunk/include/iprt
- Timestamp:
- Feb 10, 2013 6:10:50 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 83701
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/path.h
r44528 r44615 594 594 595 595 596 /** 597 * Create a relative path between the two given paths. 598 * 599 * @returns IPRT status code. 600 * @retval VINF_SUCCESS on success. 601 * @retval VERR_BUFFER_OVERFLOW if the result is too big to fit within 602 * cbPathDst bytes. 603 * @retval VERR_NOT_SUPPORTED if both paths start with different volume specifiers. 604 * @param pszPathDst Where to store the resulting path. 605 * @param cbPathDst The size of the buffer pszPathDst points to, 606 * terminator included. 607 * @param pszPathFrom The path to start from creating the relative path. 608 * @param pszPathTo The path to reach with the created relative path. 609 */ 610 RTDECL(int) RTPathCreateRelative(char *pszPathDst, size_t cbPathDst, 611 const char *pszPathFrom, 612 const char *pszPathTo); 613 596 614 #ifdef IN_RING3 597 615
Note:
See TracChangeset
for help on using the changeset viewer.