~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/blender/blenkernel/BKE_report.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2014-02-19 11:24:23 UTC
  • mfrom: (14.2.23 sid)
  • Revision ID: package-import@ubuntu.com-20140219112423-rkmaz2m7ha06d4tk
Tags: 2.69-3ubuntu1
* Merge with Debian; remaining changes:
  - Configure without OpenImageIO on armhf, as it is not available on
    Ubuntu.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
#include <stdio.h>
35
35
 
36
36
#include "DNA_windowmanager_types.h"
 
37
#include "BLI_compiler_attrs.h"
37
38
#include "BLI_utildefines.h"
38
39
 
39
40
/* Reporting Information and Errors
47
48
void BKE_reports_clear(ReportList *reports);
48
49
 
49
50
void BKE_report(ReportList *reports, ReportType type, const char *message);
50
 
void BKE_reportf(ReportList *reports, ReportType type, const char *format, ...)
51
 
#ifdef __GNUC__
52
 
__attribute__ ((format(printf, 3, 4)))
53
 
#endif
54
 
;
 
51
void BKE_reportf(ReportList *reports, ReportType type, const char *format, ...) ATTR_PRINTF_FORMAT(3, 4);
55
52
 
56
53
void BKE_reports_prepend(ReportList *reports, const char *prepend);
57
 
void BKE_reports_prependf(ReportList *reports, const char *prepend, ...)
58
 
#ifdef __GNUC__
59
 
__attribute__ ((format(printf, 2, 3)))
60
 
#endif
61
 
;
 
54
void BKE_reports_prependf(ReportList *reports, const char *prepend, ...) ATTR_PRINTF_FORMAT(2, 3);
62
55
 
63
56
ReportType BKE_report_print_level(ReportList *reports);
64
57
void BKE_report_print_level_set(ReportList *reports, ReportType level);