mds_plat/harvester_framework_api/inc/harvesterpauseps.h
changeset 0 c53acadfccc6
equal deleted inserted replaced
-1:000000000000 0:c53acadfccc6
       
     1 /*
       
     2 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  P&S key for harvester server pause
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef HARVESTERPAUSEPS_H_
       
    19 #define HARVESTERPAUSEPS_H_
       
    20 
       
    21 const TUid KPsHarvesterPauseCategory = { 0x200009F5 };
       
    22 
       
    23 // observed by harvester server
       
    24 const TUint KPsHarvesterPauseKey            = 0x00000001;
       
    25 
       
    26 enum TPsHarvesterPauseState
       
    27 	{
       
    28 	EPsHarvesterPauseResume = 0,  // Resume harvesting
       
    29 	EPsHarvesterPausePause        // Pause harvesting
       
    30 	};
       
    31 
       
    32 #endif /*HARVESTERPAUSEPS_H_*/
       
    33