Writes a Mng to an already-opened file
| 313 | |
| 314 | //! Writes a Mng to an already-opened file |
| 315 | ILuint ilSaveMngF(ILHANDLE File) |
| 316 | { |
| 317 | ILuint Pos = itellw(); |
| 318 | iSetOutputFile(File); |
| 319 | if (iSaveMngInternal() == IL_FALSE) |
| 320 | return 0; // Error occurred |
| 321 | return itellw() - Pos; // Return the number of bytes written. |
| 322 | } |
| 323 | |
| 324 | |
| 325 | //! Writes a Mng to a memory "lump" |
no test coverage detected