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

Function ilLoadDcxF

DevIL/src-IL/src/il_dcx.cpp:150–161  ·  view source on GitHub ↗

Reads an already-opened .dcx file

Source from the content-addressed store, hash-verified

148
149//! Reads an already-opened .dcx file
150ILboolean ilLoadDcxF(ILHANDLE File)
151{
152 ILuint FirstPos;
153 ILboolean bRet;
154
155 iSetInputFile(File);
156 FirstPos = itell();
157 bRet = iLoadDcxInternal();
158 iseek(FirstPos, IL_SEEK_SET);
159
160 return bRet;
161}
162
163
164//! Reads from a memory "lump" that contains a .dcx

Callers 1

ilLoadDcxFunction · 0.85

Calls 2

iSetInputFileFunction · 0.85
iLoadDcxInternalFunction · 0.85

Tested by

no test coverage detected