Writes a Psd to an already-opened file
| 930 | |
| 931 | //! Writes a Psd to an already-opened file |
| 932 | ILuint ilSavePsdF(ILHANDLE File) |
| 933 | { |
| 934 | ILuint Pos; |
| 935 | iSetOutputFile(File); |
| 936 | Pos = itellw(); |
| 937 | if (iSavePsdInternal() == IL_FALSE) |
| 938 | return 0; // Error occurred |
| 939 | return itellw() - Pos; // Return the number of bytes written. |
| 940 | } |
| 941 | |
| 942 | |
| 943 | //! Writes a Psd to a memory "lump" |
no test coverage detected