secureswitools/swisistools/source/interpretsislib/is_utils.cpp
branchRCL_3
changeset 26 8b7f4e561641
parent 25 7333d7932ef7
equal deleted inserted replaced
25:7333d7932ef7 26:8b7f4e561641
    77 
    77 
    78 void ConvertToPlatformSpecificPath( TUint16* aIn, TUint32 len )
    78 void ConvertToPlatformSpecificPath( TUint16* aIn, TUint32 len )
    79 {
    79 {
    80     while( len-- > 0 )
    80     while( len-- > 0 )
    81     {
    81     {
    82 	#ifdef __TOOLS2_LINUX__
       
    83     	if( *aIn == '\\' )
    82     	if( *aIn == '\\' )
    84     	{
    83     	{
    85     		*aIn = '/';
    84     		*aIn = '/';
    86     	}
    85     	}
    87 	#else
       
    88     	if( *aIn == '/' )
       
    89     	{
       
    90     		*aIn = '\\';
       
    91     	}
       
    92 	#endif
       
    93 		
       
    94     	aIn++;
    86     	aIn++;
    95     }
    87     }
    96 }
    88 }
    97 
    89 
    98 #ifdef __TOOLS2_LINUX__
    90 #ifdef __TOOLS2_LINUX__