///////////////////////////////////////// XCLIENTMSG_RETURNSCRIPTHASH
| 964 | ////////////////////////////////////////////// |
| 965 | // XCLIENTMSG_RETURNSCRIPTHASH |
| 966 | void CXClient::SendScriptHashResponse( const unsigned int dwHash ) |
| 967 | { |
| 968 | CStream stm; |
| 969 | |
| 970 | IBitStream *pBitStream = m_pGame->GetIBitStream(); |
| 971 | |
| 972 | pBitStream->WriteBitStream(stm,(uint32)dwHash,eDoNotCompress); // returned hash |
| 973 | SendReliableMsg(XCLIENTMSG_RETURNSCRIPTHASH,stm); |
| 974 | |
| 975 | // debug |
| 976 | // m_pLog->Log("SendScriptHashResponse %p",dwHash); |
| 977 | } |
| 978 | |
| 979 | |
| 980 | void CXClient::SendInputToServer( const bool bTimeToSend ) |
nothing calls this directly
no test coverage detected