|
|
От: |
b_monkey
|
|
| Дата: | 22.10.07 16:52 | ||
| Оценка: | |||
void DesConverter8to16(const TDesC8& from, TDes16& to )
{
TInt i = 0;
TInt j = 0;
to.FillZ();
while(j < from.Length() ){
to[i++] |= from[j++] & 0xff;
}
to.SetLength( from.Length() );
}