diff -r 3f227a47ad75 -r 2492a6e4aed7 telephonyprotocols/pdplayer/inc/pdpmessagedefn.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/telephonyprotocols/pdplayer/inc/pdpmessagedefn.h Tue Apr 27 17:51:07 2010 +0300 @@ -0,0 +1,46 @@ +// 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 TPDPFSMMessage; + typedef Messages::TMessageSigNumber TAuthenticateComplete; + typedef Messages::TMessageSigNodeIdNumber TPdpContentionResultMessage; + }; + +#endif