Copy content of the main buffer into the parameter
| 148 | |
| 149 | // Copy content of the main buffer into the parameter |
| 150 | inline void CopyFromBuffer(void * buffer) |
| 151 | { |
| 152 | memcpy(buffer, fBuffers[MAIN]->fBuffer, fBuffers[MAIN]->fFilled); |
| 153 | fBuffers[MAIN]->fFilled = 0; |
| 154 | } |
| 155 | |
| 156 | // Returns the main write buffer filled length |
| 157 | inline Uint32 GetFilled(void) const |
nothing calls this directly
no outgoing calls
no test coverage detected