Implemented Mesh and Node Name plugins.

This commit is contained in:
Angelo Papenhoff
2014-12-19 16:24:29 +01:00
parent 02db884c0c
commit 37e027b17c
7 changed files with 220 additions and 24 deletions

View File

@ -160,4 +160,16 @@ FindChunk(istream &s, uint32 type, uint32 *length, uint32 *version)
return false;
}
int32
findPointer(void *p, void **list, int32 num)
{
int i;
for(i = 0; i < num; i++)
if(list[i] == p)
goto found;
return -1;
found:
return i;
}
}