wlan_bearer/wlanengine/wlan_symbian/wlanengine_symbian_3.1/src/wlmplatform.cpp
branchRCL_3
changeset 18 d3d7683d16f5
parent 17 a828660c511c
equal deleted inserted replaced
17:a828660c511c 18:d3d7683d16f5
    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: 13 %
    19 * %version: 12 %
    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 	}
       
   207 
   198 
   208 // ---------------------------------------------------------
   199 // ---------------------------------------------------------
   209 // CWlmPlatform::SystemModeChanged
   200 // CWlmPlatform::SystemModeChanged
   210 // ---------------------------------------------------------
   201 // ---------------------------------------------------------
   211 //
   202 //
   343     {
   334     {
   344     DEBUG( "CWlmPlatform::OnCacheClearTimerExpiration()" );
   335     DEBUG( "CWlmPlatform::OnCacheClearTimerExpiration()" );
   345     
   336     
   346     iCallback.ClearRegionCache();
   337     iCallback.ClearRegionCache();
   347     }
   338     }
   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