コード例 #1
0
ファイル: il_files.cpp プロジェクト: KFreon/KFreon_s-ResIL
// Reset io to use the default file system functions for reading data
void ILAPIENTRY il2ResetRead(ILimage* image)
{
    il2SetRead((ILimage*) image, iDefaultOpenR, iDefaultCloseR, iDefaultEof, iDefaultGetc,
               iDefaultRead, iDefaultSeek, iDefaultTell);
    return;
}
コード例 #2
0
ファイル: il_api1.cpp プロジェクト: zapolnov/libraries
//! Allows you to override the default file-reading functions.
ILAPI void ILAPIENTRY ilSetRead(fOpenProc aOpen, fCloseProc aClose, fEofProc aEof, fGetcProc aGetc, 
	fReadProc aRead, fSeekProc aSeek, fTellProc aTell)
{
	il2SetRead(iCurImage, aOpen, aClose, aEof, aGetc, aRead, aSeek, aTell);
}