| 1129 | |
| 1130 | |
| 1131 | void cProtocol125::SendWindowProperty(const cWindow & a_Window, short a_Property, short a_Value) |
| 1132 | { |
| 1133 | cCSLock Lock(m_CSPacket); |
| 1134 | WriteByte (PACKET_WINDOW_PROPERTY); |
| 1135 | WriteChar (a_Window.GetWindowID()); |
| 1136 | WriteShort(a_Property); |
| 1137 | WriteShort(a_Value); |
| 1138 | Flush(); |
| 1139 | } |
| 1140 | |
| 1141 | |
| 1142 |
no test coverage detected