musicplayer_plat/mpx_music_shop_ui_api/inc/MusicShopExternalInterface.h
changeset 0 ff3acec5bc43
child 2 b70d77332e66
equal deleted inserted replaced
-1:000000000000 0:ff3acec5bc43
       
     1 /*
       
     2 * Copyright (c) 2005 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:  Contains external interface UID/DNL
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MUSICSHOP_EXTERNAL_INTERFACE_H
       
    20 #define MUSICSHOP_EXTERNAL_INTERFACE_H
       
    21 
       
    22 
       
    23 #include <vwsdef.h>
       
    24 #include <HttpDownloadMgrCommon.h> // KMaxUrlLength
       
    25 
       
    26 const TUid KUidMusicShop = { 0x101F8839 }; // UID of the application
       
    27 const TUid KUidMusBmViewId = {0x101F883A};
       
    28 const TUid KUidMusBrViewId = {0x101F883B};
       
    29 
       
    30 const TUid KUidMusDnlBmLinkMsg = {0x00000001};
       
    31 const TUid KUidMusDnlBrUrlLinkMsg = {0x00000002};
       
    32 const TUid KUidMusDnlBmViewBackToPageMsg = {0x00000003};
       
    33 
       
    34 
       
    35 class TMushopBrViewDnl
       
    36     {
       
    37     public: // member variable
       
    38         TBuf<KMaxUrlLength> iUrl;
       
    39         TUint iDefaultAccessPoint;
       
    40         TInt  iRskId;
       
    41     };
       
    42 
       
    43 typedef TPckgBuf<TMushopBrViewDnl> TMushopBrViewDnlBuf;
       
    44 
       
    45 
       
    46 #endif // MUSICSHOP_EXTERNAL_INTERFACE_H
       
    47 // End of File
       
    48