diff -r c711bdda59f4 -r ac77f89b1d9e browserutilities/schemehandler/SchemeDispatcher/src/RtspHandler.cpp --- a/browserutilities/schemehandler/SchemeDispatcher/src/RtspHandler.cpp Wed Mar 31 23:16:40 2010 +0300 +++ b/browserutilities/schemehandler/SchemeDispatcher/src/RtspHandler.cpp Wed Apr 14 17:06:56 2010 +0300 @@ -31,9 +31,13 @@ #include #include +#ifdef __S60_32__ +LOCAL_C const TUid KUidMediaPlayer = { 0x10005A3E }; +#else +#include +#endif // ================= CONSTANTS ======================= -LOCAL_C const TUid KUidMediaPlayer = { 0x10005A3E }; _LIT( KRtspFileName, "c:\\system\\temp\\RtspTemp.ram" ); // ================= MEMBER FUNCTIONS ======================= @@ -193,8 +197,11 @@ User::LeaveIfError( appArcSession.Connect() ); TThreadId id; - appArcSession.StartDocument( iParsedUrl->Des(), KUidMediaPlayer , id ); - +#ifdef __S60_32__ + appArcSession.StartDocument( iParsedUrl->Des(), KUidMediaPlayer , id ); +#else + appArcSession.StartDocument( iParsedUrl->Des(), TUid::Uid(KVideoPlayerUID) , id ); +#endif appArcSession.Close(); CLOG_LEAVEFN( "CRtspHandler::HandleUrlStandaloneL()" ); @@ -224,3 +231,4 @@ CLOG_LEAVEFN( "CRtspHandler::HandleServerAppExit" ); } +