epoc32/include/mw/mmfropcustomcommandconstants.h
author William Roberts <williamr@symbian.org>
Tue, 16 Mar 2010 16:12:26 +0000
branchSymbian2
changeset 2 2fe1408b6811
parent 1 666f914201fb
child 4 837f303aceeb
permissions -rw-r--r--
Final list of Symbian^2 public API header files
     1 /*
     2 * Copyright (c) 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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: Constants defined for Coustom Commands
    15 *
    16 */
    17 
    18 #ifndef __MMFROPCUSTOMCOMMANDCONSTANTS_H
    19 #define __MMFROPCUSTOMCOMMANDCONSTANTS_H
    20 #include <e32std.h>
    21 /**
    22  * @publishedAll
    23  *
    24  * Interface UID and messages for the ROP Controller API.
    25  */
    26 const TUid KUidInterfaceMMFROPController = {0x101F855D};
    27 /**
    28  *  Function constants
    29  */
    30 enum TMMFROPControllerMessage
    31 {
    32     EMMFROPControllerGetApplicationConfig,
    33     EMMFROPControllerSetApplicationConfig,
    34     EMMFROPControllerGetErrorLog,
    35     EMMFROPControllerClearErrorLog,
    36 
    37     EMMFROPControllerSetDownloadID,
    38 
    39     EMMFROPControllerSetDownloadComplete,
    40     EMMFROPControllerSetDownloadSize
    41 };
    42 /**
    43  *  Constants describing the config version to query
    44  */
    45 enum TMMFROPControllerConfigVersion
    46 {
    47     KMMFAudioVideoConfigDefault,   // Configuration created on installation
    48     KMMFAudioVideoConfigOperator,  // Configuration created on operator setup
    49     KMMFAudioVideoConfigUser       // Last Configuration saved by the application
    50 };
    51 /**
    52  *  Constants describing ErrorLog error classes.
    53  *  XXX  This enumeration must match the EErrorLogClass enumeration located
    54  *  XXX  in errorlog_sink.h.
    55  */
    56 enum TMMFROPErrorLogClass
    57 {
    58     KMMFROPErrorLogRTSP,           // RTSP error (must be first enum)
    59     KMMFROPErrorLogSendEvents,     // Error Send Events
    60     KMMFROPErrorLogECXlat,         // Error code translation.
    61     KMMFROPErrorLogNumClasses      // Number of error log classes (not a class)
    62 };
    63 #endif __MMFROPCUSTOMCOMMANDCONSTANTS_H