~ubuntu-branches/ubuntu/wily/totem-pl-parser/wily

« back to all changes in this revision

Viewing changes to plparse/totem-pl-parser-private.h

  • Committer: Package Import Robot
  • Author(s): Michael Biebl
  • Date: 2012-03-09 13:39:14 UTC
  • mfrom: (1.4.16) (1.5.12 sid)
  • Revision ID: package-import@ubuntu.com-20120309133914-e6iab9fcyg8cmw33
Tags: 3.2.0-1
* New upstream release.
* debian/patches/01-libquvi-0.4.patch: Removed, merged upstream.
* debian/control.in: Bump (Build-)Depends on libglib2.0-dev to (>= 2.31.0).

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
#define TOTEM_PL_PARSER_FIELD_FILE              "gfile-object"
85
85
#define TOTEM_PL_PARSER_FIELD_BASE_FILE         "gfile-object-base"
86
86
 
87
 
#ifndef TOTEM_PL_PARSER_MINI
88
87
#define DEBUG(file, x) {                                        \
89
88
        if (totem_pl_parser_is_debugging_enabled (parser)) {    \
90
89
                if (file != NULL) {                             \
99
98
                }                                               \
100
99
        }                                                       \
101
100
}
102
 
#else
103
 
#define DEBUG(x) { if (totem_pl_parser_is_debugging_enabled (parser)) x; }
104
 
#endif
 
101
#define DEBUG1(x) {                                             \
 
102
        if (totem_pl_parser_is_debugging_enabled (parser)) {    \
 
103
                x;                                              \
 
104
        }                                                       \
 
105
}
105
106
 
106
107
typedef struct {
107
108
        guint recurse_level;