============================================================================= GetLongPathNameEx()
| 1336 | // |
| 1337 | // |
| 1338 | DWORD GetLongPathNameEx ( LPWSTR lpszPath, DWORD cchBuffer ) |
| 1339 | { |
| 1340 | DWORD dwRet = GetLongPathName ( lpszPath, lpszPath, cchBuffer ); |
| 1341 | if ( dwRet ) { |
| 1342 | if ( PathGetDriveNumber ( lpszPath ) != -1 ) { |
| 1343 | CharUpperBuff ( lpszPath, 1 ); |
| 1344 | } |
| 1345 | return ( dwRet ); |
| 1346 | } |
| 1347 | return ( 0 ); |
| 1348 | } |
| 1349 | |
| 1350 | |
| 1351 | //============================================================================= |
no outgoing calls
no test coverage detected