2007-04-06 01:09:58 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2004-01-29 07:43:05 +00:00
|
|
|
#include "class.h"
|
2011-01-09 10:41:24 +00:00
|
|
|
#include "codespace.h"
|
2012-11-08 12:13:24 +00:00
|
|
|
#include "diagnostic.h"
|
2004-01-29 07:43:05 +00:00
|
|
|
#include "debug.h"
|
|
|
|
#include "def.h"
|
2011-01-17 13:33:33 +00:00
|
|
|
#include "defspace.h"
|
2004-01-29 07:43:05 +00:00
|
|
|
#include "emit.h"
|
2012-11-08 12:13:24 +00:00
|
|
|
#include "expr.h"
|
2004-01-29 07:43:05 +00:00
|
|
|
#include "function.h"
|
|
|
|
#include "obj_file.h"
|
|
|
|
#include "options.h"
|
|
|
|
#include "qfcc.h"
|
|
|
|
#include "strpool.h"
|
|
|
|
#include "type.h"
|
2011-03-22 03:24:39 +00:00
|
|
|
#include "value.h"
|
2004-01-29 07:43:05 +00:00
|
|
|
|
|
|
|
struct dstring_s;
|
|
|
|
options_t options;
|
|
|
|
int num_linenos;
|
|
|
|
pr_lineno_t *linenos;
|
|
|
|
pr_info_t pr;
|
|
|
|
string_t ReuseString (const char *str) {return 0;}
|
2012-12-05 13:15:19 +00:00
|
|
|
void encode_type (struct dstring_s *str, const type_t *type) {}
|
2004-01-29 07:43:05 +00:00
|
|
|
codespace_t *codespace_new (void) {return 0;}
|
2011-01-19 06:47:45 +00:00
|
|
|
void codespace_addcode (codespace_t *codespace, struct dstatement_s *code, int size) {}
|
2004-01-29 07:43:05 +00:00
|
|
|
int function_parms (function_t *f, byte *parm_size) {return 0;}
|
|
|
|
void def_to_ddef (def_t *def, ddef_t *ddef, int aux) {}
|
2012-11-08 12:13:24 +00:00
|
|
|
expr_t *warning (expr_t *e, const char *fmt, ...) {return 0;}
|
2012-11-29 01:26:19 +00:00
|
|
|
expr_t *error (expr_t *e, const char *fmt, ...) {return 0;}
|