MCPcopy Create free account
hub / github.com/DentonW/DevIL / ilLoadWalF

Function ilLoadWalF

DevIL/src-IL/src/il_wal.cpp:54–65  ·  view source on GitHub ↗

Reads an already-opened .wal file

Source from the content-addressed store, hash-verified

52
53//! Reads an already-opened .wal file
54ILboolean ilLoadWalF(ILHANDLE File)
55{
56 ILuint FirstPos;
57 ILboolean bRet;
58
59 iSetInputFile(File);
60 FirstPos = itell();
61 bRet = iLoadWalInternal();
62 iseek(FirstPos, IL_SEEK_SET);
63
64 return bRet;
65}
66
67
68//! Reads from a memory "lump" that contains a .wal file

Callers 2

ilLoadWalFunction · 0.85
ILAPIENTRY ilLoadFFunction · 0.85

Calls 2

iSetInputFileFunction · 0.85
iLoadWalInternalFunction · 0.85

Tested by

no test coverage detected