00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef __TIMESERVERSESSION_H__
00020 #define __TIMESERVERSESSION_H__
00021
00022
00023 #include <e32base.h>
00024
00025
00026
00027
00028
00029 const TUint KDefaultMessageSlots = 2;
00030
00031 const TUid KServerUid3 = { 0xA0000227 };
00032
00033 _LIT( KTimeServerFilename, "CSAsyncServer" );
00034
00035 #ifdef __WINS__
00036 static const TUint KServerMinHeapSize = 0x1000;
00037 static const TUint KServerMaxHeapSize = 0x10000;
00038 #endif
00039
00040
00045 class RTimeServerSession : public RSessionBase
00046 {
00047 public:
00048
00053 RTimeServerSession();
00054
00055 public:
00056
00062 TInt Connect();
00063
00069 TVersion Version() const;
00070
00077 void RequestTime( TTime& aTime,TRequestStatus& aStatus );
00078
00083 void CancelRequestTime() const;
00084
00085 private:
00086
00090 TPtr8 iTimeBuffer;
00091 };
00092
00093
00094 #endif // __TIMESERVERSESSION_H__
00095
00096
00097