But be aware that type casting in g++ is different than with GCC.
e.g.
becomes
But the normal, preferable, way is what you already are doing. C files are C files and not Cpp files.
e.g.
Code:
switch( (settingsIndex_Tp)pppL)
becomes
Code:
switch( reinterpret_cast<settingsIndex_Tp &>(pppL))
But the normal, preferable, way is what you already are doing. C files are C files and not Cpp files.