telephonyprotocols/pdplayer/inc/pdpmessagedefn.h
author William Roberts <williamr@symbian.org>
Fri, 28 May 2010 15:11:19 +0100
branchRCL_3
changeset 30 664a5fed40c6
parent 21 2492a6e4aed7
child 24 6638e7f4bd8f
permissions -rw-r--r--
Re-merge fix for bug 1398

// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// It contains all the internal messages used by PDP component.
//

/**
 @file
 @internalComponent
*/

#ifndef SYMBIAN_PDP_MESSAGE_DEFN_H
#define SYMBIAN_PDP_MESSAGE_DEFN_H

class TPDPMessages
    {
public:
    enum { ERealmId = 0x102822EF };

private:
    enum
    /**
    Definition of generic Link Tier message ids
    */
        {
        EPDPFSMMessage = Messages::KNullMessageId + 1,
        EAuthenticateComplete = Messages::KNullMessageId + 2,
        EPDPContentionResultMessage = Messages::KNullMessageId + 3
        };
public:
    typedef Messages::TMessageSigNumberNumber<EPDPFSMMessage, TPDPMessages::ERealmId> TPDPFSMMessage;
    typedef Messages::TMessageSigNumber<EAuthenticateComplete, TPDPMessages::ERealmId> TAuthenticateComplete;
    typedef Messages::TMessageSigNodeIdNumber<EPDPContentionResultMessage, TPDPMessages::ERealmId> TPdpContentionResultMessage;
    };

#endif