Changeset 21742 for branches/gcc-kmk/src
- Timestamp:
- Oct 25, 2011, 7:13:55 PM (14 years ago)
- Location:
- branches/gcc-kmk/src/kernel32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/src/kernel32/Fileio.cpp
r21566 r21742 1184 1184 DWORD sp = 0, lp = 0,attr; 1185 1185 LPSTR tmpshortpath,tmplongpath; 1186 LPSTR lpszShortPath1, lpszLongPath1; 1186 LPCSTR lpszShortPath1; 1187 LPSTR lpszLongPath1; 1187 1188 1188 1189 dprintf(("GetLongPathNameA %s %x %d", lpszShortPath, lpszLongPath, cchBuffer)); … … 1203 1204 } 1204 1205 1205 lpszShortPath1 = ODINHelperStripUNC( (char*)lpszShortPath);1206 lpszLongPath1 = ODINHelperStripUNC( (char*)lpszLongPath);1206 lpszShortPath1 = ODINHelperStripUNC(lpszShortPath); 1207 lpszLongPath1 = ODINHelperStripUNC(lpszLongPath); 1207 1208 1208 1209 lstrcpyA(tmpshortpath,lpszShortPath1); -
branches/gcc-kmk/src/kernel32/oslibdos.h
r21732 r21742 367 367 #endif 368 368 369 #ifdef __cplusplus 370 INLINE LPSTR ODINHelperStripUNC(LPSTR strUNC) 371 { 372 return (LPSTR)ODINHelperStripUNC((LPCSTR) strUNC); 373 } 374 #endif 375 369 376 #endif //__OSLIBDOS_H__ 370 377
Note:
See TracChangeset
for help on using the changeset viewer.