Is there a way to see the name of the datatype that was used to load an image (or anything)?
IDataTypes->NewDTObject(); then IDataTypes->GetDTAttrs(DTO, GetNameTag, &buffer, TAG_END);
struct DataType *dt; GetDTAttrs (dto, DTA_DataType,&dt, TAG_END); Printf ("%s\n",dt->dtn_Header->dth_Name);
Thank you
Thank you