| 116 | } |
| 117 | |
| 118 | unsigned int cByteQueueNode::Get(byte& outByte) |
| 119 | { |
| 120 | if (tail == head) |
| 121 | return 0; |
| 122 | |
| 123 | outByte = buf[head++]; |
| 124 | return 1; |
| 125 | } |
| 126 | |
| 127 | unsigned int cByteQueueNode::Get(byte* outString, unsigned int getMax) |
| 128 | { |
no test coverage detected