Writes a .vtf to an already-opened file
| 752 | |
| 753 | //! Writes a .vtf to an already-opened file |
| 754 | ILuint ilSaveVtfF(ILHANDLE File) |
| 755 | { |
| 756 | ILuint Pos; |
| 757 | if (!CheckDimensions()) |
| 758 | return 0; |
| 759 | iSetOutputFile(File); |
| 760 | Pos = itellw(); |
| 761 | if (iSaveVtfInternal() == IL_FALSE) |
| 762 | return 0; // Error occurred |
| 763 | return itellw() - Pos; // Return the number of bytes written. |
| 764 | } |
| 765 | |
| 766 | |
| 767 | //! Writes a .vtf to a memory "lump" |
no test coverage detected