00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #include <e32base.h>
00017
00018
00019
00020
00021 _LIT(KCountServerName,"CountServer");
00022
00023
00024
00025 const TUint KCountServMajorVersionNumber=0;
00026 const TUint KCountServMinorVersionNumber=1;
00027 const TUint KCountServBuildVersionNumber=1;
00028
00029 IMPORT_C TInt StartThread(RThread& aServerThread);
00030
00031
00032
00033 enum TCountServRqst
00034 {
00035 ECountServCreate = 1,
00036 ECountServSetFromString,
00037 ECountServClose,
00038 ECountServUnsupportedRequest,
00039 ECountServIncrease,
00040 ECountServIncreaseBy,
00041 ECountServDecrease,
00042 ECountServDecreaseBy,
00043 ECountServValue,
00044 ECountServReset
00045 };
00046
00047 enum TCountServLeave
00048 {
00049 ENonNumericString = 99
00050 };