I have a method pointer like below:
typedef void (MMsnInternalCallBacks::* FuncPtr)();
FuncPtr iSoapActionComplete;
I call the method below through the pointer iSoapActionComplete like below:
(iCallbacks.*iSoapActionComplete)( );
While the function is being called a message "Memory Full. Try closing some applications" flashes on my Symbian S60 3rd Ed emulator.
Any idea why this could be happening.