123456789101112131415161718192021222324252627282930313233343536373839 |
- /*
- * tcp_util.h
- *
- * Created on: 2024年7月18日
- * Author: m
- */
- #ifndef JNI_NET_TCP_UTIL_H_
- #define JNI_NET_TCP_UTIL_H_
- void sendNursing();
- void sendNursingEnd();
- void sendReinforceCall();
- std::string sendVoiceCall(Json::Value json, std::string tid);
- std::string sendVoiceCall(Json::Value json);
- std::string sendVoiceCall(int toId);
- void sendVoiceTcp(std::string action, TcpModel model, int toId);
- void sendVoiceCancel(int toId);
- void sendVoiceCancelByDoor();
- void sendSosCall(std::string sosMsg);
- void sendSosCancel(std::string sosId);
- void sendSosRoomCall();
- void sendPowerReset();
- void sendEventClick(Json::Value json);
- void sendEventCompleted(std::string event);
- void sendEventCancel(std::string event);
- void sendConutdownStart(Json::Value json);
- void sendCountdownEnd(std::string id);
- void sendCountdownCancel(std::string id);
- void sendDataRemindOhter(std::string msg);
- #endif /* JNI_NET_TCP_UTIL_H_ */
|