you cant convert a struct to a const char

in your struct you probably have something like this

Code:
struct  MyStruct
{
     int MyInt;
     char MyChar;
};
if you wanted you could do something like this
Code:
const char MyConstChar = MyStruct.MyChar;
otherwise i dont think there is a way to do it