| 261 | } |
| 262 | |
| 263 | bool ImageIsZeroTracksValidForThisType(ImageInfo* const pImageInfo) |
| 264 | { |
| 265 | if (!pImageInfo || !pImageInfo->pImageType) |
| 266 | return false; |
| 267 | |
| 268 | if (pImageInfo->pImageType->GetType() == eImageAPL || pImageInfo->pImageType->GetType() == eImagePRG) |
| 269 | return true; |
| 270 | |
| 271 | return false; |
| 272 | } |
| 273 | |
| 274 | void GetImageTitle(LPCTSTR pPathname, std::string & pImageName, std::string & pFullName) |
| 275 | { |