Guys, I have a little problem here... I have CleanupStack::PopAndDestroy(iSettings) on my code... When I include this code and install the application on 6600, my application crashes on this point. But when I install the same application on 6630, the application runs very smoothly... But when I modify the code and remove CleanupStack::PopAndDestroy(iSettings) and install it on 6600, the application is running smooth but not in 6630...
So this is just my question... How can i indicate on my code that im using 6600...
For example
#ifdef [imusing6600]
#else
CleanupStack::PopAndDestroy(iSettings);
#endif

Reply With Quote

