| 56 | } |
| 57 | |
| 58 | ILint ILAPIENTRY iSizePutc(ILubyte Char) |
| 59 | { |
| 60 | CurPos++; |
| 61 | if (CurPos > MaxPos) |
| 62 | MaxPos = CurPos; |
| 63 | return Char; |
| 64 | } |
| 65 | |
| 66 | ILint ILAPIENTRY iSizeWrite(const void *Buffer, ILuint Size, ILuint Number) |
| 67 | { |
nothing calls this directly
no outgoing calls
no test coverage detected