/* ImageMagick Progress Monitor Methods. */ #ifndef _MAGICK_MONITOR_H #define _MAGICK_MONITOR_H #if defined(__cplusplus) || defined(c_plusplus) extern "C" { #endif /* Monitor typedef declarations. */ typedef void (*MonitorHandler)(const char *,const off_t,const off_t); /* Monitor declarations. */ extern MagickExport MonitorHandler SetMonitorHandler(MonitorHandler); extern MagickExport void MagickMonitor(const char *,const off_t,const off_t); #if defined(__cplusplus) || defined(c_plusplus) } #endif #endif .