Reads an already-opened .pcd file
| 40 | |
| 41 | //! Reads an already-opened .pcd file |
| 42 | ILboolean ilLoadPcdF(ILHANDLE File) |
| 43 | { |
| 44 | ILuint FirstPos; |
| 45 | ILboolean bRet; |
| 46 | |
| 47 | iSetInputFile(File); |
| 48 | FirstPos = itell(); |
| 49 | bRet = iLoadPcdInternal(); |
| 50 | iseek(FirstPos, IL_SEEK_SET); |
| 51 | |
| 52 | return bRet; |
| 53 | } |
| 54 | |
| 55 | |
| 56 | //! Reads from a memory "lump" that contains a .pcd file |
no test coverage detected