cbs/CbsServer/ServerInc/CbsServerTypes.h
changeset 46 2fa1fa551b0b
parent 42 35488577e233
child 48 78df25012fda
equal deleted inserted replaced
42:35488577e233 46:2fa1fa551b0b
     1 /*
       
     2 * Copyright (c) 2003 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 server typedefs and enumerations.
       
    15 *                Note that most of these types are aliases to database types.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #ifndef     CBSSERVERTYPES_H
       
    22 #define     CBSSERVERTYPES_H
       
    23 
       
    24 // INCLUDES
       
    25 
       
    26 #include <e32base.h>
       
    27 #include "CbsServerConstants.h"
       
    28 
       
    29 // DATA TYPES
       
    30 
       
    31 // Represents a handle to a message.
       
    32 typedef TCbsDbMessageHandle TCbsMessageHandle;
       
    33 
       
    34 // Represents the length of the message.
       
    35 typedef TCbsDbMessageLength TCbsMessageLength;
       
    36 
       
    37 // Represents a handle to a topic collection.
       
    38 typedef TUint TCbsTopicCollectionHandle;
       
    39 
       
    40 // Represents a handle to a topic.
       
    41 typedef TCbsDbTopicHandle TCbsTopicHandle;
       
    42 
       
    43 // Represents topic list handles.
       
    44 typedef TInt16 TCbsTopicListHandle;
       
    45 
       
    46 // Represents the topic numbers.
       
    47 typedef TCbsDbTopicNumber TCbsTopicNumber;
       
    48 
       
    49 // Enumerates the reasons for the client panic.
       
    50 typedef TCbsDbMessageKey TCbsMessageKey;
       
    51 
       
    52 #endif      //  CBSSERVERTYPES_H   
       
    53             
       
    54 // End of File
       
    55 
       
    56