Changeset 33426 in vbox for trunk/src/VBox/Runtime/include
- Timestamp:
- Oct 25, 2010 2:32:38 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/path.h
r28915 r33426 85 85 * @returns IPRT status code. 86 86 * @param ppszPath Where to store the pointer to the IPRT path. 87 * Free by calling RTStrFree(). NULL on failure.87 * Free by calling rtPathFreeIprt(). NULL on failure. 88 88 * @param pszNativePath The native path to convert. 89 89 * @param pszBasePath What pszNativePath is relative to - in IPRT … … 117 117 int rtPathFromNativeCopy(char *pszPath, size_t cbPath, const char *pszNativePath, const char *pszBasePath); 118 118 119 /** 120 * Convert a path from the native representation to the IPRT one, allocating a 121 * string buffer for the result. 122 * 123 * @returns VINF_SUCCESS, VERR_NO_STR_MEMORY, and recoding errors. 124 * 125 * @param ppszPath Where to return the pointer to the IPRT path. Must 126 * be freed by calling RTStrFree. 127 * @param pszNativePath The path to convert. 128 * @param pszBasePath What pszNativePath is relative to - in IPRT 129 * representation. NULL if current directory. 130 */ 131 int rtPathFromNativeDup(char **ppszPath, const char *pszNativePath, const char *pszBasePath); 132 119 133 120 134 RT_C_DECLS_END
Note:
See TracChangeset
for help on using the changeset viewer.