diff -r e16d72588c28 -r 8a03a285ab14 omadrm/drmengine/drmclock/Src/DRMClockClient2.cpp --- a/omadrm/drmengine/drmclock/Src/DRMClockClient2.cpp Fri Mar 12 15:43:46 2010 +0200 +++ b/omadrm/drmengine/drmclock/Src/DRMClockClient2.cpp Mon Mar 15 12:41:43 2010 +0200 @@ -18,14 +18,14 @@ // INCLUDE FILES #include "DRMClockClient.h" -#include "DRMclockClientServer.h" +#include "drmclockclientserver.h" #include "DRMTypes.h" -#include "DRMLog.h" +#include "drmlog.h" // EXTERNAL DATA STRUCTURES -// EXTERNAL FUNCTION PROTOTYPES +// EXTERNAL FUNCTION PROTOTYPES // CONSTANTS // MACROS @@ -57,7 +57,7 @@ EXPORT_C RDRMClockClient::RDRMClockClient() { } - + // ----------------------------------------------------------------------------- // RDRMClockClient::~RDRMClockClient // Destructor. @@ -65,7 +65,7 @@ // EXPORT_C RDRMClockClient::~RDRMClockClient() { - } + } // ----------------------------------------------------------------------------- // RDRMClockClient::Connect @@ -75,23 +75,23 @@ EXPORT_C TInt RDRMClockClient::Connect() { TInt ret = KErrNone; -#ifdef __DRM_CLOCK +#ifdef __DRM_CLOCK DRMLOG( _L( "RDRMClockClient::Connect" ) ); - const TVersion requiredVersion( + const TVersion requiredVersion( DRMClock::KServerMajorVersion, DRMClock::KServerMinorVersion, DRMClock::KServerBuildVersion ); - + DRMLOG( _L("RDRMClockClient: Create a new session" ) ); ret = CreateSession( DRMClock::KServerName, - requiredVersion, + requiredVersion, KMaxMessageSlots ); DRMLOG2( _L( "Result: %d") , ret ); #else DRMLOG( _L( "RDRMClockClient: No Session Created, DRMClock is off") ); #endif // __DRM_CLOCK - + return ret; } @@ -100,7 +100,7 @@ // Closes the connection to the server. // ----------------------------------------------------------------------------- // -EXPORT_C void RDRMClockClient::Close() +EXPORT_C void RDRMClockClient::Close() { DRMLOG( _L( "RDRMClockClient::Close" ) ); @@ -115,38 +115,38 @@ EXPORT_C TInt RDRMClockClient::GetSecureTime( TTime& aTime, TInt& aTimeZone, DRMClock::ESecurityLevel& aSecurityLevel ) const { -#ifdef __DRM_CLOCK +#ifdef __DRM_CLOCK TPckg package(aTime); TPckg package2(aTimeZone); TPckg package3(aSecurityLevel); - + DRMLOG( _L( "RDRMClockClient::GetSecureTime" ) ); TInt error = KErrNone; - + // Send the message. error = SendReceive( DRMClock::EGetDRMTime, TIpcArgs( &package, &package2, &package3 ) ); - + DRMLOG2( _L( "RDRMClockClient::GetSecureTime: %d" ), error ); return error; #else DRMLOG( _L( "RDRMClockClient::GetSecureTime, UI Time is returned, DRMClock is off" ) ); - TTime currentLocal; + TTime currentLocal; TInt64 result = 0; - - // aTime: - aTime.UniversalTime(); - currentLocal.HomeTime(); - + + // aTime: + aTime.UniversalTime(); + currentLocal.HomeTime(); + result = currentLocal.Int64() - aTime.Int64(); result /= KMinuteInMicroseconds; result /= KTimeZoneIncrement; - + // aTimeZone: aTimeZone = I64INT(result); - // aSecurityLevel: - aSecurityLevel = DRMClock::KSecure; - return KErrNone; + // aSecurityLevel: + aSecurityLevel = DRMClock::KSecure; + return KErrNone; #endif // __DRM_CLOCK } @@ -162,11 +162,11 @@ #ifdef __DRM_CLOCK TPckg package(aTime); TPckg package2(aTimeZone); - + DRMLOG( _L( "RDRMClockClient::UpdateSecureTime" ) ); - + error = SendReceive( DRMClock::EUpdateDRMTime, TIpcArgs( &package, &package2 ) ); - + DRMLOG2( _L( "RDRMClockClient::UpdateSecureTime: " ), error ); #else DRMLOG( _L("RDRMClockClient::UpdateSecureTime, Did nothing DRMClock is off") ); @@ -177,4 +177,4 @@ // ========================== OTHER EXPORTED FUNCTIONS ========================= -// End of File +// End of File