Posted: 2006-03-09T12:21:06-07:00
To identify each image in the list you must iterate over the list. Something like:
Code: Select all
for (next=image; next != (Image *) NULL; next=GetNextImageInList(next))
IdentifyImage(next,...);