commands/btservices/BtData.h
changeset 0 7f656887cf89
equal deleted inserted replaced
-1:000000000000 0:7f656887cf89
       
     1 // BtData.h
       
     2 // 
       
     3 // Copyright (c) 2010 Accenture. All rights reserved.
       
     4 // This component and the accompanying materials are made available
       
     5 // under the terms of the "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 // Accenture - Initial contribution
       
    11 //
       
    12 #ifndef BTDATA_H_
       
    13 #define BTDATA_H_
       
    14 
       
    15 struct TUUidPair
       
    16 	{
       
    17 	TUint32 uuid;
       
    18 	TPtrC txt;
       
    19 	};
       
    20 
       
    21 const TUUidPair UuidAsArray[] = 
       
    22 	{
       
    23 			{0x0001,_L("SDP") },
       
    24 			{0x0003,_L("RFCOMM") },
       
    25 			{0x0005,_L("TCS-BIN") },
       
    26 			{0x0100,_L("L2CAP") },
       
    27 			{0x0009,_L("IP") },
       
    28 			{0x0002,_L("UDP") },
       
    29 			{0x0004,_L("TCP") },
       
    30 			{0x0006,_L("TCS-AT") },
       
    31 			{0x0008,_L("OBEX") },
       
    32 			{0x000A,_L("FTP") },
       
    33 			{0x000C,_L("HTTP") },
       
    34 			{0x000E,_L("WSP") },
       
    35 			{0x1000,_L("ServiceDiscoveryServerServiceClassID") },
       
    36 			{0x1001,_L("BrowseGroupDescriptorServiceClassID") },
       
    37 			{0x1002,_L("PublicBrowseGroup") },
       
    38 			{0x1101,_L("SerialPort") },
       
    39 			{0x1102,_L("LANAccessUsingPPP") },
       
    40 			{0x1103,_L("DialupNetworking") },
       
    41 			{0x1104,_L("IrMCSync") },
       
    42 			{0x1105,_L("OBEXObjectPush") },
       
    43 			{0x1106,_L("OBEXFileTransfer") },
       
    44 			{0x1107,_L("IrMCSyncCommand")},
       
    45 			{0x1108,_L("Headset")},
       
    46 			{0x1109,_L("CordlessTelephony")},
       
    47 			{0x1110,_L("Intercom")},
       
    48 			{0x1111,_L("Fax")},
       
    49 			{0x1112,_L("HeadsetAudioGateway")},
       
    50 			{0x1113,_L("WAP")},
       
    51 			{0x1114,_L("WAP_CLIENT")},
       
    52 			{0x1200,_L("PnPInformation")},
       
    53 			{0x1201,_L("GenericNetworking")},
       
    54 			{0x1202,_L("GenericFileTransfer")},
       
    55 			{0x1203,_L("GenericAudio")},
       
    56 			{0x1204,_L("GenericTelephony")}				
       
    57 	};
       
    58 
       
    59 #endif