Writes int32 to the stream.
| 75 | |
| 76 | // Writes int32 to the stream. |
| 77 | FORCE_INLINE void WriteInt32(int32 data) |
| 78 | { |
| 79 | WriteBytes(&data, sizeof(int32)); |
| 80 | } |
| 81 | |
| 82 | // Writes int64 to the stream. |
| 83 | FORCE_INLINE void WriteInt64(int64 data) |
no outgoing calls
no test coverage detected