hi all,
i created a class and stores the pointer in global rchunk,
process 1
class CMyClassublic CBase
{
public
cMyClass2* C;
}
CMyClass* iPtr;
class CMyClass2ublic CBase
{
TInt iRef;
}
m storing iPtr in rchunk
now i want to access the data of the class in some other process
now when i try to acess in
process 2
TInt ref = iPtr->iPtr->iRef
ref am getting "0" alwaz ,whatever be the value i stores in process 1
please give some coomment

ublic CBase
Reply With Quote

