~ubuntu-wine/ubuntu/lucid/wine1.2/wine1.2+winepulse

« back to all changes in this revision

Viewing changes to tools/wmc/wmc.c

  • Committer: Bazaar Package Importer
  • Author(s): Scott Ritchie
  • Date: 2010-02-02 11:15:03 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20100202111503-w4ayji21ei1ginjr
Tags: 1.1.37-0ubuntu1
* New upstream release
  - A number of fixes in AVI file support.
  - Several MSXML improvements.
  - A few MSI fixes.
  - Various bug fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
/*
102
102
 * Debugging flag (-D option)
103
103
 */
104
 
int dodebug = 0;
 
104
static int dodebug = 0;
105
105
 
106
106
char *output_name = NULL;       /* The name given by the -o option */
107
107
char *input_name = NULL;        /* The name given on the command-line */
115
115
 
116
116
int mcy_debug;
117
117
 
 
118
FILE *yyin;
 
119
 
118
120
int getopt (int argc, char *const *argv, const char *optstring);
119
121
static void segvhandler(int sig);
120
122
 
242
244
        mcy_debug = dodebug;
243
245
        if(dodebug)
244
246
        {
245
 
                setbuf(stdout, 0);
246
 
                setbuf(stderr, 0);
 
247
                setbuf(stdout, NULL);
 
248
                setbuf(stderr, NULL);
247
249
        }
248
250
 
249
251
        /* Check for input file on command-line */