| 64 | } |
| 65 | |
| 66 | ILint ILAPIENTRY iSizeWrite(const void *Buffer, ILuint Size, ILuint Number) |
| 67 | { |
| 68 | CurPos += Size * Number; |
| 69 | if (CurPos > MaxPos) |
| 70 | MaxPos = CurPos; |
| 71 | return Number; |
| 72 | } |
| 73 | |
| 74 | |
| 75 | //@TODO: Do computations for uncompressed formats without going through the |
nothing calls this directly
no outgoing calls
no test coverage detected