| 314 | |
| 315 | |
| 316 | void CPacket::CopyUInt32ToDataBuffer(uint32 data, unsigned int offset) |
| 317 | { |
| 318 | wxCHECK_RET(offset <= size - sizeof(uint32), "Bad offset in CopyUInt32ToDataBuffer."); |
| 319 | PokeUInt32( pBuffer + offset, data ); |
| 320 | } |
| 321 | // File_checked_for_headers |
no test coverage detected