MCPcopy Create free account
hub / github.com/ProgerXP/Notepad2e / GetLongPathNameEx

Function GetLongPathNameEx

src/Helpers.c:1338–1348  ·  view source on GitHub ↗

============================================================================= GetLongPathNameEx()

Source from the content-addressed store, hash-verified

1336//
1337//
1338DWORD 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//=============================================================================

Callers 2

_FileLoadFunction · 0.85
ActivatePrevInstFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected