| 676 | |
| 677 | |
| 678 | ILint ILAPIENTRY iPutcLump(ILubyte Char) |
| 679 | { |
| 680 | if (WriteLumpPos >= WriteLumpSize) |
| 681 | return IL_EOF; // IL_EOF |
| 682 | *((ILubyte*)(WriteLump) + WriteLumpPos++) = Char; |
| 683 | return Char; |
| 684 | } |
| 685 | |
| 686 | |
| 687 | ILint ILAPIENTRY iWriteFile(const void *Buffer, ILuint Size, ILuint Number) |
nothing calls this directly
no outgoing calls
no test coverage detected