Changeset 99758 in vbox for trunk/src/VBox/Runtime/r3/win
- Timestamp:
- May 11, 2023 9:37:59 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 157349
- Location:
- trunk/src/VBox/Runtime/r3/win
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/localipc-win.cpp
r98103 r99758 567 567 * Retains a reference to the server instance. 568 568 * 569 * @returns570 569 * @param pThis The server instance. 571 570 */ -
trunk/src/VBox/Runtime/r3/win/path-win.cpp
r98103 r99758 61 61 typedef FNSHGETFOLDERPATHW *PFNSHGETFOLDERPATHW; 62 62 63 /** 64 * Get the real (no symlinks, no . or .. components) path, must exist. 65 * 66 * @returns iprt status code. 67 * @param pszPath The path to resolve. 68 * @param pszRealPath Where to store the real path. 69 * @param cchRealPath Size of the buffer. 70 */ 63 71 64 RTDECL(int) RTPathReal(const char *pszPath, char *pszRealPath, size_t cchRealPath) 72 65 { … … 101 94 102 95 #if 0 103 /**104 * Get the absolute path (no symlinks, no . or .. components), doesn't have to exit.105 *106 * @returns iprt status code.107 * @param pszPath The path to resolve.108 * @param pszAbsPath Where to store the absolute path.109 * @param cchAbsPath Size of the buffer.110 */111 96 RTDECL(int) RTPathAbs(const char *pszPath, char *pszAbsPath, size_t cchAbsPath) 112 97 { … … 160 145 161 146 162 /**163 * Gets the user home directory.164 *165 * @returns iprt status code.166 * @param pszPath Buffer where to store the path.167 * @param cchPath Buffer size in bytes.168 */169 147 RTDECL(int) RTPathUserHome(char *pszPath, size_t cchPath) 170 148 {
Note:
See TracChangeset
for help on using the changeset viewer.