CDesC16Array parameter
| Wed, 2005-03-02 16:37 | |
|
Hello,
I have function: GetRunningApplicationsL(CDesC16Array &aItems) ... TBuf<2*KMaxFileName+1> name; aItems.AppendL( name ); If I call function GetRunningApplicationsL( *iItems ), how I should define iItems R...Array<...>* iItems = new (ELeave) R...array<...>(...) ![]() Thank you in advance, Julia |
|







Forum posts: 18
Try creating items using CDesCArrayFlat(TInt aGranularity).
items->AppendL(name1);
items->AppendL(name2);
Bags