The following code illustrates enumeration of compound-file entries.

ULONG rc;
CHAR  szElement[CCHMAXPATH];
rc=mmioFindElement(MMIO_FE_FINDFIRST,szElement,CCHMAXPATH,"TEST.Bnd",0);
while(!rc) {
   /* Save current szElement */
   ...
   rc=mmioFindElement(MMIO_FE_FINDNEXT, szElement,CCHMAXPATH,"TEST.Bnd",0);
}


[Back] [Next]