in my client, I sent the request like below:
TPckg<TTime> data(aTime);
TIpcArgs args(&data);
SendReceive(ETimeServSetAlarm,args,aStatus);
and in my server, I got the request:
TTime time;
TPckg<TTime> des(time);
aMessage.ReadL(0,des);
but the problem is the time I sent is difference with I got in my server, why?

Reply With Quote

