~ubuntu-branches/ubuntu/trusty/graphicsmagick/trusty-proposed

« back to all changes in this revision

Viewing changes to magick/monitor.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2009-05-07 20:09:28 UTC
  • mfrom: (5.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090507200928-5rb3jyvrsi9x3zfl
Tags: 1.3.5-5
* debian/control: Update Conflicts/Replaces of -dev-compat package to
  follow libmagick-dev package split. Closes: #526482
* magick/GraphicsMagick-config.{in,1}: Do not expose compiler options
  used to build the library itself via GraphicsMagick-config. Only
  provide options that are actually useful to depending applications.
  Adjust documentation accordingly. Closes: #523596

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
extern "C" {
17
17
#endif
18
18
 
19
 
/*
20
 
  Monitor typedef declarations.
21
 
*/
22
 
typedef unsigned int
 
19
  /*
 
20
    Monitor typedef declarations.
 
21
  */
 
22
  typedef MagickPassFail
23
23
  (*MonitorHandler)(const char *text,const magick_int64_t quantum,
24
 
    const magick_uint64_t span,ExceptionInfo *exception);
25
 
 
26
 
/*
27
 
  Monitor declarations.
28
 
*/
29
 
extern MagickExport MonitorHandler
 
24
                    const magick_uint64_t span,ExceptionInfo *exception);
 
25
  
 
26
  /*
 
27
    Monitor declarations.
 
28
  */
 
29
  extern MagickExport MonitorHandler
30
30
  SetMonitorHandler(MonitorHandler handler);
31
31
 
32
 
extern MagickExport unsigned int
 
32
  extern MagickExport MagickPassFail
33
33
  MagickMonitor(const char *text,
34
 
  const magick_int64_t quantum,const magick_uint64_t span,
35
 
  ExceptionInfo *exception);
 
34
                const magick_int64_t quantum,const magick_uint64_t span,
 
35
                ExceptionInfo *exception);
 
36
 
 
37
  extern MagickExport MagickPassFail
 
38
  MagickMonitorFormatted(const magick_int64_t quantum,
 
39
                         const magick_uint64_t span,
 
40
                         ExceptionInfo *exception,
 
41
                         const char *format,...) __attribute__((format (printf,4,5)));
36
42
 
37
43
#if defined(__cplusplus) || defined(c_plusplus)
38
44
}