wlan_bearer/wlanengine/wlan_symbian/wlanengine_symbian_3.1/src/wlmplatform.cpp
branchRCL_3
changeset 17 a828660c511c
parent 3 6524e815f76f
child 18 d3d7683d16f5
equal deleted inserted replaced
16:5fb7af913dfd 17:a828660c511c
    14 * Description:  Offers API to platform for the rest of the engine
    14 * Description:  Offers API to platform for the rest of the engine
    15 *
    15 *
    16 */
    16 */
    17 
    17 
    18 /*
    18 /*
    19 * %version: 12 %
    19 * %version: 13 %
    20 */
    20 */
    21 
    21 
    22 
    22 
    23 #include <e32std.h>
    23 #include <e32std.h>
    24 #include "wlmplatform.h"
    24 #include "wlmplatform.h"
   193 //
   193 //
   194 EXPORT_C void CWlmPlatform::PublishBgScanInterval( TUint32& aInterval )
   194 EXPORT_C void CWlmPlatform::PublishBgScanInterval( TUint32& aInterval )
   195     {
   195     {
   196     iPlatformData->PublishBgScanInterval( aInterval );
   196     iPlatformData->PublishBgScanInterval( aInterval );
   197     }
   197     }
       
   198     
       
   199 // ---------------------------------------------------------
       
   200 // CWlmPlatform::GetWlanOnOffState
       
   201 // ---------------------------------------------------------
       
   202 //
       
   203 EXPORT_C TWlanOnOffState CWlmPlatform::GetWlanOnOffState()
       
   204     {
       
   205 	return iPlatformData->GetWlanOnOffState();
       
   206 	}
   198 
   207 
   199 // ---------------------------------------------------------
   208 // ---------------------------------------------------------
   200 // CWlmPlatform::SystemModeChanged
   209 // CWlmPlatform::SystemModeChanged
   201 // ---------------------------------------------------------
   210 // ---------------------------------------------------------
   202 //
   211 //
   334     {
   343     {
   335     DEBUG( "CWlmPlatform::OnCacheClearTimerExpiration()" );
   344     DEBUG( "CWlmPlatform::OnCacheClearTimerExpiration()" );
   336     
   345     
   337     iCallback.ClearRegionCache();
   346     iCallback.ClearRegionCache();
   338     }
   347     }
       
   348     
       
   349 // ---------------------------------------------------------
       
   350 // CWlmPlatform::WlanOn
       
   351 // ---------------------------------------------------------
       
   352 //
       
   353 void CWlmPlatform::WlanOn()
       
   354     {
       
   355 	DEBUG( "CWlmPlatform::WlanOn()" );
       
   356 	
       
   357 	iCallback.WlanOn();
       
   358 	}
       
   359 
       
   360 // ---------------------------------------------------------
       
   361 // CWlmPlatform::WlanOff
       
   362 // ---------------------------------------------------------
       
   363 //
       
   364 void CWlmPlatform::WlanOff()
       
   365     {
       
   366 	DEBUG( "CWlmPlatform::WlanOff()" );
       
   367 	
       
   368 	iCallback.WlanOff();
       
   369 	}
       
   370