|
1 /* |
|
2 * Copyright (c) 2006 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: This header file contains macro definitions used by the database |
|
15 * subsystem. |
|
16 * |
|
17 */ |
|
18 |
|
19 #ifndef MPXDBCOMMONDEF_H |
|
20 #define MPXDBCOMMONDEF_H |
|
21 |
|
22 #include <e32def.h> |
|
23 #include <e32cmn.h> |
|
24 |
|
25 // Literals to speed up mcdb by not having to create TPtr's at runtime */ |
|
26 _LIT(KMCSingleQuote, "'"); |
|
27 _LIT(KMCBackSlash, "\\"); |
|
28 _LIT(KMCPercentage, "%"); |
|
29 _LIT(KMCUnderscore, "_"); |
|
30 _LIT(KMCCommaSign, ","); |
|
31 _LIT(KMCEqualSign, " = "); |
|
32 _LIT(KMCOpenBracket, "("); |
|
33 _LIT(KMCCloseBracket, ")"); |
|
34 _LIT(KMCAndKeyword," AND "); |
|
35 _LIT(KMCOrKeyword, " OR "); |
|
36 |
|
37 #endif // MPXDBCOMMONDEF_H |
|
38 |
|
39 //End of File |