From 15eaa5a03df5cf6e38f2ce088e8d01a174aa15e8 Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Fri, 26 Dec 2003 04:53:44 +0000 Subject: [PATCH] Bring non-libtool (VC++) build up to date with libyasm structural changes. Patch submitted by: Brian Gladman svn path=/trunk/yasm/; revision=1088 --- Mkfiles/vc/yasm-module.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Mkfiles/vc/yasm-module.c b/Mkfiles/vc/yasm-module.c index fdf8c816..214f2e91 100644 --- a/Mkfiles/vc/yasm-module.c +++ b/Mkfiles/vc/yasm-module.c @@ -40,7 +40,6 @@ typedef struct module { } module; extern yasm_arch yasm_x86_LTX_arch; -extern int yasm_x86_LTX_mode_bits; extern yasm_arch yasm_lc3b_LTX_arch; extern yasm_dbgfmt yasm_null_LTX_dbgfmt; extern yasm_objfmt yasm_bin_LTX_objfmt; @@ -56,7 +55,6 @@ extern yasm_preproc yasm_yapp_LTX_preproc; static module modules[] = { {MODULE_ARCH, "x86", "arch", &yasm_x86_LTX_arch}, - {MODULE_ARCH, "x86", "mode_bits", &yasm_x86_LTX_mode_bits}, {MODULE_ARCH, "lc3b", "arch", &yasm_lc3b_LTX_arch}, {MODULE_DBGFMT, "null", "dbgfmt", &yasm_null_LTX_dbgfmt}, {MODULE_OBJFMT, "bin", "objfmt", &yasm_bin_LTX_objfmt}, @@ -112,11 +110,11 @@ list_modules(module_type type, void (*printfunc) (const char *name, const char *keyword)) { int i; - yasm_arch *arch; + yasm_arch_module *arch; yasm_dbgfmt *dbgfmt; yasm_objfmt *objfmt; yasm_optimizer *optimizer; - yasm_parser *parser; + yasm_parser_module *parser; yasm_preproc *preproc; /* Go through available list, and try to load each one */ -- 2.40.0