Changeset 28880 in vbox for trunk/src/VBox/Runtime/generic/pathhost-generic.cpp
- Timestamp:
- Apr 28, 2010 8:36:16 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/pathhost-generic.cpp
r28877 r28880 54 54 55 55 56 int rtPathFromNative(char **p szPath, const char *pszNativePath)56 int rtPathFromNative(char **ppszPath, const char *pszNativePath) 57 57 { 58 return RTStrCurrentCPToUtf8(p szPath, pszNativePath);58 return RTStrCurrentCPToUtf8(ppszPath, pszNativePath); 59 59 } 60 60 61 61 62 int rtPathFromNativeEx(char **p szPath, const char *pszNativePath, const char *pszBasePath)62 int rtPathFromNativeEx(char **ppszPath, const char *pszNativePath, const char *pszBasePath) 63 63 { 64 64 NOREF(pszBasePath); 65 return RTStrCurrentCPToUtf8(p szPath, pszNativePath);65 return RTStrCurrentCPToUtf8(ppszPath, pszNativePath); 66 66 } 67 67
Note:
See TracChangeset
for help on using the changeset viewer.