package com.sogouchat.os;
public interface ChatAppConstant {
public static String SAVE_PATH = "/sogouchat/media/";
public static final int ForeMsg = 0;
//Foreward Srv Msg
public static final int SRV_ForeMsg_FetchDb = ForeMsg+0;
public static final int SRV_ForeMsg_Down_Msg = ForeMsg+1;
public static final int SRV_ForeMsg_File_Down_Ok = ForeMsg+2;
public static final int SRV_ForeMsg_Read_Sms = ForeMsg+3;
public static final int SRV_ForeMsg_Fetch_Contacts = ForeMsg + 4 ;//重新取联系人
public static final int BackMsg = 100;
//Backward
public static final int SRV_BackMsg_File_Down_Ok = BackMsg+0;
public static final int SRV_BackMsg_New_Sms = BackMsg+1;
public static final int SRV_BackMsg_FetchDb_Ok = BackMsg+2;
public static final int SRV_BackMsg_Fetch_All_Msg_Ok = BackMsg+3;
public static final int SRV_BackMsg_Fetch_Contacts_Msg_Ok = BackMsg + 4 ;
public static final int SelfMsg = 200;
public static final int SRV_Fetch_All_Msg_Ok = SelfMsg+0;
public static final int SRV_Re_Fetch_Contacts_Msg_Ok = SelfMsg + 1 ;
}