From bf201fddaaaae8fbd048f6d58b315080f5069b9f Mon Sep 17 00:00:00 2001 From: Kai Tietz Date: Fri, 23 Oct 2009 14:53:57 +0000 Subject: 2009-10-23 Kai Tietz * deflex.l: Allow '<' and '>' in ID names. * defparse.y (EQUAL): New token constant. (opt_import_name): New rule for emptry or '==' ID. (expline): Add opt_import_name as last line element. (impline): Likewise. * dlltool.c (ifunct): New member its_name. (export): Likewise. (append_import): Add its_name argument. (defexports): Likewise. (defimport): Likewise. (scan_drectve_symbols): Adjust calls to def_exports. (dump_def_info): Print new optinal import/export table symbol name. (generate_idata_ofile): Use its_name member. (make_one_lib_file): Likewise. (nfunc): Take its_name in account on sort. * dlltool.h (def_exports): Add its_name as argument. (def_import): Likewise. * doc/binutils.texi: Add new def file syntax extension. * deflex.l (EQUAL): Add rule for '=='. * NEWS: Mention new feature. 2009-10-23 Kai Tietz * binutils-all/dlltool.exp: Add new test. * binutils-all/alias-2.def: New file. --- binutils/dlltool.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'binutils/dlltool.h') diff --git a/binutils/dlltool.h b/binutils/dlltool.h index e31916d8dae..35a22801ff3 100644 --- a/binutils/dlltool.h +++ b/binutils/dlltool.h @@ -24,10 +24,10 @@ extern void def_code (int); extern void def_data (int); extern void def_description (const char *); -extern void def_exports (const char *, const char *, int, int, int, int, int); +extern void def_exports (const char *, const char *, int, int, int, int, int, const char *); extern void def_heapsize (int, int); extern void def_import - (const char *, const char *, const char *, const char *, int); + (const char *, const char *, const char *, const char *, int, const char *); extern void def_library (const char *, int); extern void def_name (const char *, int); extern void def_section (const char *, int); -- cgit v1.2.1