os/ossrv/ossrv_plat/libutils/inc/libutils.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/ossrv_plat/libutils/inc/libutils.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,236 @@
     1.4 +/*
     1.5 +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description:   Contains all the API signatures
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +
    1.23 +#ifndef __LIBUTILS_H__
    1.24 +#define __LIBUTILS_H__
    1.25 +
    1.26 +#include <e32cmn.h>
    1.27 +#include <string>
    1.28 +
    1.29 +using namespace std;
    1.30 +
    1.31 +enum TErrorCodes 
    1.32 +{
    1.33 +    ESuccess = 0,
    1.34 +	EInsufficientMemory = -1,
    1.35 +    EInvalidSize = -2,
    1.36 +    EStringNoData = -3,
    1.37 +    EInvalidPointer = -4,
    1.38 +    EDescriptorNoData = -5,
    1.39 +    EUseNewMaxL = -6,
    1.40 +    EInvalidMBSSequence = -7,
    1.41 +    EInvalidWCSSequence = -8,
    1.42 +    EInsufficientSystemMemory = -9
    1.43 +};
    1.44 +
    1.45 +IMPORT_C int CharToTbuf16(const char* aSrc, TDes16& aDes);
    1.46 +
    1.47 +IMPORT_C int CharToTbuf8(const char* aSrc, TDes8& aDes);
    1.48 +
    1.49 +IMPORT_C int CharToHbufc16(const char* aSrc, HBufC16* aDes);
    1.50 +
    1.51 +IMPORT_C int CharToHbufc8(const char* aSrc, HBufC8* aDes);
    1.52 +
    1.53 +IMPORT_C int CharpToTptr8(const char* aSrc, TPtr8& aDes);
    1.54 +
    1.55 +IMPORT_C int CharpToTptr16(const char* aSrc, TPtr16& aDes);
    1.56 +
    1.57 +IMPORT_C int CharpToTptrc16(char* aSrc, wchar_t* cPtr, TPtrC16& aDes);
    1.58 +
    1.59 +IMPORT_C int CharpToTptrc8(const char* aSrc, TPtrC8& aDes);
    1.60 +
    1.61 +IMPORT_C int CharToRbuf16(const char* aSrc, RBuf16& aDes);
    1.62 +
    1.63 +IMPORT_C int WcharToTbuf16(const wchar_t* aSrc, TDes16& aDes);
    1.64 +
    1.65 +IMPORT_C int WcharToTbuf8(const wchar_t* aSrc, TDes8& aDes);
    1.66 +
    1.67 +IMPORT_C int WcharToHbufc8(const wchar_t* aSrc, HBufC8* aDes);
    1.68 +
    1.69 +IMPORT_C int WcharToHbufc16(const wchar_t* aSrc, HBufC16* aDes);
    1.70 +
    1.71 +IMPORT_C int WcharpToTptr16(const wchar_t* aSrc, TPtr16& aDes);
    1.72 +
    1.73 +IMPORT_C int WcharpToTptr8 (const wchar_t* aSrc, char *cPtr, TPtr8& aDes);
    1.74 +
    1.75 +IMPORT_C int WcharpToTptrc8 (const wchar_t* aSrc, char* cPtr, TPtrC8& aDes);
    1.76 +
    1.77 +IMPORT_C int WcharpToTptrc16 (const wchar_t* aSrc, TPtrC16& aDes);
    1.78 +
    1.79 +IMPORT_C int WcharToRbuf8 (const wchar_t* aSrc, RBuf8& aDes);
    1.80 +
    1.81 +IMPORT_C int WcharToRbuf16 (const wchar_t* aSrc, RBuf16& aDes);
    1.82 +
    1.83 +IMPORT_C  int StringToTbuf8 (string& aString, TDes8& aDes);
    1.84 +
    1.85 +IMPORT_C  int StringToTbuf16 (string& aString, TDes16& aDes);
    1.86 +
    1.87 +IMPORT_C  int StringToTptrc16 (string& aString, wchar_t *wptr, TPtrC16& aDes);
    1.88 +
    1.89 +IMPORT_C int StringToTptrc8 (string& aString, TPtrC8& aDes);
    1.90 +
    1.91 +IMPORT_C  int StringToTptr8 (string& aString, TPtr8& aDes);
    1.92 +
    1.93 +IMPORT_C int StringToTptr16 (string& aSrc, wchar_t *wPtr, TPtr16& aDes);
    1.94 +
    1.95 +IMPORT_C int StringToHbufc16 (string& aString, HBufC16* aDes);
    1.96 +
    1.97 +IMPORT_C int StringToHbufc8 (string& aString, HBufC8* aDes);
    1.98 +
    1.99 +IMPORT_C int StringToRbuf8 (const string& aSrc, RBuf8& aDes);
   1.100 +
   1.101 +IMPORT_C int StringToRbuf16 (const string& aSrc, RBuf16& aDes);
   1.102 +
   1.103 +IMPORT_C int WstringToTbuf8 (wstring& aString, TDes8& aDes);
   1.104 +
   1.105 +IMPORT_C int WstringToTptr8 (wstring& aString, char* cPtr, TPtr8& aDes);
   1.106 +
   1.107 +IMPORT_C int WstringToTptr16 (wstring& aString, TPtr16& aDes);
   1.108 +
   1.109 +IMPORT_C int WstringToTptrc8 (wstring& aString, char* cPtr, TPtrC8& aDes);
   1.110 +
   1.111 +IMPORT_C int WstringToTptrc16 (wstring& aString , TPtrC16& aDes);
   1.112 +
   1.113 +IMPORT_C int WstringToRbuf8 (const wstring& aSrc, RBuf8& aDes);
   1.114 +
   1.115 +IMPORT_C int WstringToRbuf16 (const wstring& aSrc, RBuf16& aDes);
   1.116 +
   1.117 +IMPORT_C int Tbuf8ToString (TDes8& aSrc, string& aDes);
   1.118 +
   1.119 +IMPORT_C int Tptr8ToString (TDes8& aSrc, string& aDes);
   1.120 +
   1.121 +IMPORT_C int Tptrc8ToString (const TDesC8& aSrc, string& aDes);
   1.122 +
   1.123 +IMPORT_C int Tptr16ToString (TDes16& aDes, string& astring);
   1.124 +
   1.125 +IMPORT_C int Tptrc16ToString (const TDesC16& aDes, string& aString);
   1.126 +
   1.127 +IMPORT_C int Hbufc16ToString (HBufC16* aSrc, string& aString, int& n_size);
   1.128 +
   1.129 +IMPORT_C int Hbufc8ToString (HBufC8* aSrc, string& aString);
   1.130 +
   1.131 +IMPORT_C int Rbuf8ToString (TDes8& aSrc, string& aDes);
   1.132 +
   1.133 +IMPORT_C int Tbuf8ToChar (TDes8& aSrc, char* aDes, int& n_size);
   1.134 +
   1.135 +IMPORT_C int Tbuf16ToChar(TDes16& aSrc, char* aDes, int& n_size);
   1.136 +
   1.137 +IMPORT_C int Tbufc8ToChar (TDesC8& aSrc, char* aDes, int &n_size);
   1.138 +
   1.139 +IMPORT_C int Tbufc16ToChar (TDesC16& aSrc, char* aDes, int &n_size);
   1.140 +
   1.141 +IMPORT_C int Tlitc8ToChar (const TDesC8& aDes, char* aSrc, int& n_size);
   1.142 +
   1.143 +IMPORT_C int Tlitc16ToChar (const TDesC16& aDes, char* aSrc,int& n_size);
   1.144 +
   1.145 +IMPORT_C int Tptr8ToChar (const TDes8& aSrc, char* aDes, int& n_size);
   1.146 +
   1.147 +IMPORT_C int Tptr16ToCharp (const TDes16& aSrc, char* aDes, int& n_size);
   1.148 +
   1.149 +IMPORT_C int Tptrc8ToCharp (TPtrC8& aSrc, char* aDes, int& n_size);
   1.150 +
   1.151 +IMPORT_C int Tptrc16ToCharp (TPtrC16& aSrc, char* aDes, int& n_size);
   1.152 +
   1.153 +IMPORT_C int Rbuf8ToChar (TDes8& aSrc, char * aDes, int& n_size);
   1.154 +
   1.155 +IMPORT_C int Rbuf16ToChar (TDes16& aSrc, char* aDes, int& n_size);
   1.156 +
   1.157 +IMPORT_C int Tbuf8ToWchar (TDes8& aSrc , wchar_t* aDes, int& n_size);
   1.158 +
   1.159 +IMPORT_C int Tbuf16ToWchar (const TDes16& aSrc, wchar_t* aDes, int &n_size);
   1.160 +
   1.161 +IMPORT_C int Tbufc8ToWchar (TDesC8& aSrc, wchar_t* aDes, int& n_size);
   1.162 +
   1.163 +IMPORT_C int Tbufc16ToWchar (TDesC& aSrc, wchar_t* aDes, int& n_size);
   1.164 +
   1.165 +IMPORT_C int Tlitc8ToWchar (const TDesC8& aDes, wchar_t* aSrc, int& n_size);
   1.166 +
   1.167 +IMPORT_C int Tlitc16ToWchar (const TDesC16& aSrc, wchar_t* aDes, int& n_size);
   1.168 +
   1.169 +IMPORT_C int Tptr8ToWcharp (const TPtr8& aSrc, wchar_t* aDes, int& n_size);
   1.170 +
   1.171 +IMPORT_C int Tptr16ToWcharp (const TPtr16& aSrc, wchar_t* aDes, int& n_size);
   1.172 +
   1.173 +IMPORT_C int Tptrc8ToWcharp (TPtrC8& aSrc, wchar_t* aDes, int& n_size);
   1.174 +
   1.175 +IMPORT_C int Tptrc16ToWcharp (TPtrC16& aSrc, wchar_t* aDes, int& n_size);
   1.176 +
   1.177 +IMPORT_C int Rbuf8ToWchar (TDes8& aSrc, wchar_t* aDes, int& n_size);
   1.178 +
   1.179 +IMPORT_C int Rbuf16ToWchar (TDes16& aSrc, wchar_t* aDes, int& n_size);
   1.180 +
   1.181 +IMPORT_C int WcharpToTptrc8(const wchar_t* aSrc, TDes16& aDes);
   1.182 +
   1.183 +IMPORT_C int WcharpToTptr16(const wchar_t* aSrc, TDes16& aDes);
   1.184 +
   1.185 +IMPORT_C int Tptrc8ToWstring (TPtrC8& aSrc, wstring& aDes);
   1.186 +
   1.187 +IMPORT_C int Tptrc16ToWstring (TPtrC16& aSrc, wstring& aDes);
   1.188 +
   1.189 +IMPORT_C int Tptr8ToWstring (TPtr8& aSrc, wstring& aDes);
   1.190 +
   1.191 +IMPORT_C int Tptr16ToWstring (TPtr16& aSrc, wstring& aDes);
   1.192 +
   1.193 +IMPORT_C int Rbuf8ToWstring (TDes8& aSrc, wstring& aDes);
   1.194 +
   1.195 +IMPORT_C int Rbuf16ToWstring (TDes16& aSrc, wstring& aDes);
   1.196 +
   1.197 +IMPORT_C int Rbuf16ToString(TDes16& aSrc, string& aDes);
   1.198 +
   1.199 +IMPORT_C int Tbufc8ToString(TDesC8& aSrc, string& aDes);
   1.200 +
   1.201 +IMPORT_C int Tbufc16ToString(TDesC16& aSrc, string& aDes);
   1.202 +
   1.203 +IMPORT_C int Tlit8ToString(const TDesC8& aSrc, string& aDes);
   1.204 +
   1.205 +IMPORT_C int Tlit16ToString(const TDesC16& aSrc, string& aDes);
   1.206 +
   1.207 +IMPORT_C int Hbufc16ToWstring(HBufC16* aSrc, wstring& aDes);
   1.208 +
   1.209 +IMPORT_C int Tlitc16ToWstring(TDesC16* aSrc, wstring& aDes);
   1.210 +
   1.211 +IMPORT_C int Tlitc8ToWstring(TDes8& aSrc, wstring& aDes);
   1.212 +
   1.213 +IMPORT_C int Hbufc8ToWstring(HBufC8* aSrc, wstring& aDes);
   1.214 +
   1.215 +IMPORT_C int WstringToHbufc8(wstring& aSrc, HBufC8* aDes);
   1.216 +
   1.217 +IMPORT_C int WstringToTbuf16(wstring& aSrc, TDes16& aDes);
   1.218 +
   1.219 +IMPORT_C int WstringToHbufc16(wstring& aSrc, HBufC16* aDes);
   1.220 +
   1.221 +IMPORT_C int CharToRbuf8(const char* aSrc, RBuf8& aDes);
   1.222 +
   1.223 +IMPORT_C int Tbuf8ToWstring(TDes8& aSrc, wstring& aDes);
   1.224 +
   1.225 +IMPORT_C int Tbufc8ToWstring(TDesC8& aSrc, wstring& aDes);
   1.226 +
   1.227 +IMPORT_C int HBufc8ToWchar(HBufC8* aSrc, wchar_t* aDes, int& n_size);
   1.228 +
   1.229 +IMPORT_C int Tbuf16ToWstring(TDes16& aSrc, wstring& aDes);
   1.230 +
   1.231 +IMPORT_C int Hbufc16ToWchar(const HBufC16* aSrc, wchar_t* aDes, int& n_size);
   1.232 +
   1.233 +IMPORT_C int Hbufc8ToChar(HBufC8 *aSrc, char* aDes, int& n_size);
   1.234 +
   1.235 +IMPORT_C int Tbuf16ToString(TDes16& aSrc, string& aDes);
   1.236 +
   1.237 +#endif  // __LIBUTILS_H__
   1.238 +
   1.239 +