00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef ROOT_RRemoteProtocol
00013 #define ROOT_RRemoteProtocol
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef ROOT_Rtypes
00024 #include "Rtypes.h"
00025 #endif
00026
00027
00028
00029 const Int_t kRRemote_Protocol = 1;
00030
00031
00032 enum ERootRemMsgTypes {
00033 kRRT_Undef = -1,
00034 kRRT_Fatal = 0,
00035 kRRT_Reset = 1,
00036 kRRT_CheckFile = 2,
00037 kRRT_File = 3,
00038 kRRT_LogFile = 4,
00039 kRRT_LogDone = 5,
00040 kRRT_Protocol = 6,
00041 kRRT_GetObject = 7,
00042 kRRT_Message = 8,
00043 kRRT_Terminate = 9,
00044 kRRT_SendFile = 10
00045 };
00046
00047
00048 enum ERootRemInterrupt {
00049 kRRI_Hard = 1,
00050 kRRI_Soft = 2,
00051 kRRI_Shutdown = 3
00052 };
00053
00054 #endif