|
1 /* |
|
2 * Copyright (c) 2004-2009 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: |
|
15 * Name : SipStackServerDefs.h |
|
16 * Part of : SIPCommon |
|
17 * Version : SIP/3.0 |
|
18 * |
|
19 */ |
|
20 |
|
21 |
|
22 |
|
23 |
|
24 /** |
|
25 @internalComponent |
|
26 */ |
|
27 |
|
28 |
|
29 #ifndef __SIP_STACK_SERVER_DEFS__ |
|
30 #define __SIP_STACK_SERVER_DEFS__ |
|
31 |
|
32 #include <e32std.h> |
|
33 #include "sipclientserver.h" |
|
34 |
|
35 // Contains all the "global" definitions visible on the C/S-server side. |
|
36 |
|
37 typedef TUint32 TTransactionId; |
|
38 const TTransactionId KEmptyTransactionId=0; |
|
39 const TTransactionId KMinTransactionId=1; |
|
40 const TTransactionId KMaxTransactionId=KMaxTUint32; |
|
41 |
|
42 typedef TUint32 TRegistrationId; |
|
43 const TRegistrationId KEmptyRegistrationId=0; |
|
44 const TRegistrationId KMinRegistrationId=1; |
|
45 const TRegistrationId KMaxRegistrationId=KMaxTUint32; |
|
46 |
|
47 typedef TUint32 TRefreshId; |
|
48 const TRefreshId KEmptyRefreshId=0; |
|
49 const TRefreshId KMinRefreshId=1; |
|
50 const TRefreshId KMaxRefreshId=KMaxTUint32; |
|
51 |
|
52 typedef TUint32 TDialogId; |
|
53 const TDialogId KEmptyDialogId=0; |
|
54 const TDialogId KMinDialogId=1; |
|
55 const TDialogId KMaxDialogId=KMaxTUint32; |
|
56 |
|
57 #endif // end of __SIP_STACK_SERVER_DEFS__ |
|
58 |
|
59 // End of File |