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

Function ilLoadIconF

DevIL/src-IL/src/il_icon.cpp:41–52  ·  view source on GitHub ↗

Reads an already-opened icon file.

Source from the content-addressed store, hash-verified

39
40//! Reads an already-opened icon file.
41ILboolean ilLoadIconF(ILHANDLE File)
42{
43 ILuint FirstPos;
44 ILboolean bRet;
45
46 iSetInputFile(File);
47 FirstPos = itell();
48 bRet = iLoadIconInternal();
49 iseek(FirstPos, IL_SEEK_SET);
50
51 return bRet;
52}
53
54
55//! Reads from a memory "lump" that contains an icon.

Callers 2

ilLoadIconFunction · 0.85
ILAPIENTRY ilLoadFFunction · 0.85

Calls 2

iSetInputFileFunction · 0.85
iLoadIconInternalFunction · 0.85

Tested by

no test coverage detected