示例#1
0
int
main( int argc, char* argv[] )
{
	/* Either call simple() or detailed()  		*/
	/* You cannot call both examples together 	*/
	/* since *argv[]  gets consumed by AnyOption :) */

        //simple( argc, argv );
        detailed( argc, argv ); 
        return 0 ;
}
EXPORT_C void RMemSpySession::ServerListOutputGenericL( TBool aDetailed )
	{
	TPckgBuf<TBool> detailed( aDetailed );
	TIpcArgs args( &detailed );
	User::LeaveIfError( SendReceive( EMemSpyClientServerOpServerListOutputGeneric, args ) );
	}