Add copyright notice to insns.dat
[nasm.git] / output / outlib.h
blob285ffa9766d46a0893ea2b7f018ad2bfc922f306
1 #ifndef NASM_OUTLIB_H
2 #define NASM_OUTLIB_H
4 #include "nasm.h"
6 uint64_t realsize(enum out_type type, uint64_t size);
8 /* Do-nothing versions of all the debug routines */
9 struct ofmt;
10 void null_debug_init(struct ofmt *of, void *id, FILE * fp, efunc error);
11 void null_debug_linenum(const char *filename, int32_t linenumber,
12 int32_t segto);
13 void null_debug_deflabel(char *name, int32_t segment, int64_t offset,
14 int is_global, char *special);
15 void null_debug_routine(const char *directive, const char *params);
16 void null_debug_typevalue(int32_t type);
17 void null_debug_output(int type, void *param);
18 void null_debug_cleanup(void);
19 extern struct dfmt *null_debug_arr[2];
21 #endif /* NASM_OUTLIB_H */