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 static const TUint KDefaultMessageSlots = 0;
00030
00031
00032 const TUid KServerUid3 = { 0xA00001FC };
00033
00034 _LIT( KTimeServerFilename, "CSSyncServer.EXE" );
00035
00036 #ifdef __WINS__
00037 static const TUint KServerMinHeapSize = 0x1000;
00038 static const TUint KServerMaxHeapSize = 0x10000;
00039 #endif
00040
00041
00046 class RTimeServerSession : public RSessionBase
00047 {
00048 public:
00049
00054 RTimeServerSession();
00055
00056 public:
00057
00063 TInt Connect();
00064
00070 TVersion Version() const;
00071
00077 void RequestTime( TTime& aTime ) const;
00078
00079 };
00080
00081 #endif // __TIMESERVERSESSION_H__
00082
00083
00084