~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Wine Cross Reference
wine/tools/wrc/wrc.h

Version: ~ [ wine-1.1.33 ] ~ [ wine-1.1.32 ] ~ [ wine-1.1.31 ] ~ [ wine-1.1.30 ] ~ [ wine-1.1.29 ] ~ [ wine-1.1.28 ] ~ [ wine-1.1.27 ] ~ [ wine-1.1.26 ] ~ [ wine-1.1.25 ] ~ [ wine-1.1.24 ] ~ [ wine-1.1.23 ] ~ [ wine-1.1.22 ] ~ [ wine-1.1.21 ] ~ [ wine-1.1.20 ] ~ [ wine-1.1.19 ] ~ [ wine-1.1.18 ] ~ [ wine-1.1.17 ] ~ [ wine-1.1.16 ] ~ [ wine-1.1.15 ] ~ [ wine-1.1.14 ] ~ [ wine-1.1.13 ] ~ [ wine-1.1.12 ] ~ [ wine-1.1.11 ] ~ [ wine-1.1.10 ] ~ [ wine-1.1.9 ] ~ [ wine-1.1.8 ] ~ [ wine-1.1.7 ] ~ [ wine-1.0.1 ] ~ [ wine-1.1.6 ] ~ [ wine-1.1.5 ] ~ [ wine-1.1.4 ] ~ [ wine-1.1.3 ] ~ [ wine-1.1.2 ] ~ [ wine-1.1.1 ] ~ [ wine-1.1.0 ] ~ [ wine-1.0 ] ~

  1 /*
  2  * Main definitions and externals
  3  *
  4  * Copyright 1998 Bertho A. Stultiens (BS)
  5  *
  6  * This library is free software; you can redistribute it and/or
  7  * modify it under the terms of the GNU Lesser General Public
  8  * License as published by the Free Software Foundation; either
  9  * version 2.1 of the License, or (at your option) any later version.
 10  *
 11  * This library is distributed in the hope that it will be useful,
 12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 14  * Lesser General Public License for more details.
 15  *
 16  * You should have received a copy of the GNU Lesser General Public
 17  * License along with this library; if not, write to the Free Software
 18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 19  */
 20 
 21 #ifndef __WRC_WRC_H
 22 #define __WRC_WRC_H
 23 
 24 #include <time.h>       /* For time_t */
 25 
 26 #include "wrctypes.h"
 27 
 28 /* From wrc.c */
 29 extern int debuglevel;
 30 #define DEBUGLEVEL_NONE         0x0000
 31 #define DEBUGLEVEL_CHAT         0x0001
 32 #define DEBUGLEVEL_DUMP         0x0002
 33 #define DEBUGLEVEL_TRACE        0x0004
 34 #define DEBUGLEVEL_PPMSG        0x0008
 35 #define DEBUGLEVEL_PPLEX        0x0010
 36 #define DEBUGLEVEL_PPTRACE      0x0020
 37 
 38 extern int win32;
 39 extern int create_res;
 40 extern int extensions;
 41 extern int create_s;
 42 extern int pedantic;
 43 extern int byteorder;
 44 extern int preprocess_only;
 45 extern int no_preprocess;
 46 
 47 extern char *output_name;
 48 extern char *input_name;
 49 extern char *cmdline;
 50 extern time_t now;
 51 
 52 extern int line_number;
 53 extern int char_number;
 54 
 55 extern resource_t *resource_top;
 56 extern language_t *currentlanguage;
 57 
 58 void verify_translations(resource_t *top);
 59 void write_resfile(char *outname, resource_t *top);
 60 
 61 #endif
 62 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.