epoc32/include/comms-infras/api_ext_list.h
author William Roberts <williamr@symbian.org>
Tue, 16 Mar 2010 16:12:26 +0000
branchSymbian2
changeset 2 2fe1408b6811
permissions -rw-r--r--
Final list of Symbian^2 public API header files
     1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // 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
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 
    17 
    18 /**
    19  @file
    20  @publishedPartner
    21  @prototype
    22 */
    23 
    24 #ifndef API_EXT_LIST_H
    25 #define API_EXT_LIST_H
    26 
    27 #include <es_sock.h>
    28 
    29 #define API_ZONE(n) (10000*n)
    30 
    31 enum TSupportedCommsApiExt
    32 /**
    33 List of all currently supported API extensions.
    34 
    35 @publishedPartner
    36 @prototype
    37 */
    38 	{
    39 	// Client/Server extension APIs
    40 	EApiExtBegin = API_ZONE(0),
    41 	EMobilityApiExt,
    42 	EAvailabilityApiExt,
    43 	EDataMonitoringApiExt,
    44 	EApiExtEnd,
    45 
    46 	// Internal cross-thread APIs
    47 	EApiITCBegin = API_ZONE(1),
    48     EQueryConnSettingsApiExt = API_ZONE(1) + 1, // Forward BC compatible
    49 	EAccessPointConfigApiExt = API_ZONE(1) + 2, // Forward BC compatible
    50 	EApiITCEnd,
    51 
    52 	// 3rd party internal cross-thread APIs
    53 	EApi3rdPartyBegin = API_ZONE(2),
    54 	EApi3rdPartyEnd = API_ZONE(3) - 1
    55 	};
    56 
    57 
    58 #endif // API_EXT_LIST_H