Removed no longer needed ICOM compatibility mode in widl.

diff --git a/Make.rules.in b/Make.rules.in
index a2318a6..6e343b3 100644
--- a/Make.rules.in
+++ b/Make.rules.in
@@ -137,7 +137,7 @@
 	$(WINEBUILD) -w $(DEFS) -o $@ --def $<
 
 .idl.h:
-	$(WIDL) $(IDLFLAGS) -b -h -H $@ $<
+	$(WIDL) $(IDLFLAGS) -h -H $@ $<
 
 .c.ln:
 	$(LINT) -c $(ALLLINTFLAGS) $< || ( $(RM) $@ && exit 1 )
diff --git a/tools/widl/header.c b/tools/widl/header.c
index 34238b1..7fffd43 100644
--- a/tools/widl/header.c
+++ b/tools/widl/header.c
@@ -448,53 +448,6 @@
   return get_attrp(a, ATTR_CALLAS);
 }
 
-static void write_icom_method_def(type_t *iface)
-{
-  func_t *cur = iface->funcs;
-  if (iface->ref) write_icom_method_def( iface->ref );
-  if (!cur) return;
-  while (NEXT_LINK(cur)) cur = NEXT_LINK(cur);
-  if (cur) fprintf( header, " \\\n    /*** %s methods ***/", iface->name );
-  while (cur) {
-    var_t *def = cur->def;
-    if (!is_callas(def->attrs)) {
-      var_t *arg = cur->args;
-
-      if (arg) {
-	while (NEXT_LINK(arg)) {
-	  arg = NEXT_LINK(arg);
-	}
-      }
-      fprintf(header, " \\\n    STDMETHOD_(");
-      write_type(header, def->type, def, def->tname);
-      fprintf(header, ",");
-      write_name(header, def);
-      fprintf(header, ")(%s", arg ? "THIS_ " : "THIS" );
-      while (arg) {
-	write_type(header, arg->type, arg, arg->tname);
-        if (arg->args)
-        {
-          fprintf(header, " (STDMETHODCALLTYPE *");
-          write_name(header,arg);
-          fprintf( header,")(");
-          write_args(header, arg->args, NULL, 0, FALSE);
-          fprintf(header,")");
-        }
-        else
-        {
-          fprintf(header, " ");
-          write_name(header,arg);
-        }
-	write_array(header, arg->array, 0);
-	arg = PREV_LINK(arg);
-	if (arg) fprintf(header, ", ");
-      }
-      fprintf(header, ") PURE;");
-    }
-    cur = PREV_LINK(cur);
-  }
-}
-
 static int write_method_macro(type_t *iface, char *name)
 {
   int idx;
@@ -800,11 +753,6 @@
   fprintf(header, "\n");
   fprintf(header, "#endif\n");
   fprintf(header, "\n");
-  if (compat_icom) {
-      fprintf(header, "#define %s_METHODS", iface->name);
-      write_icom_method_def(iface);
-      fprintf(header, "\n\n");
-  }
   write_method_proto(iface);
   fprintf(header,"\n#endif  /* __%s_INTERFACE_DEFINED__ */\n\n", iface->name);
 }
diff --git a/tools/widl/widl.c b/tools/widl/widl.c
index 601417c..b29efbb 100644
--- a/tools/widl/widl.c
+++ b/tools/widl/widl.c
@@ -56,7 +56,6 @@
 
 static char usage[] =
 "Usage: widl [options...] infile.idl\n"
-"   -b          Make headers compatible with ICOM macros\n"
 "   -d n        Set debug level to 'n'\n"
 "   -D id[=val] Define preprocessor identifier id=val\n"
 "   -E          Preprocess only\n"
@@ -89,7 +88,6 @@
 int header_only = 0;
 int typelib_only = 0;
 int no_preprocess = 0;
-int compat_icom = 0;
 
 char *input_name;
 char *header_name;
@@ -138,11 +136,8 @@
 
   now = time(NULL);
 
-  while((optc = getopt(argc, argv, "bd:D:EhH:I:NtT:VW")) != EOF) {
+  while((optc = getopt(argc, argv, "d:D:EhH:I:NtT:VW")) != EOF) {
     switch(optc) {
-    case 'b':
-      compat_icom = 1;
-      break;
     case 'd':
       debuglevel = strtol(optarg, NULL, 0);
       break;
diff --git a/tools/widl/widl.h b/tools/widl/widl.h
index 93b5fd5..9f1d9b8 100644
--- a/tools/widl/widl.h
+++ b/tools/widl/widl.h
@@ -41,7 +41,6 @@
 extern int do_everything;
 extern int header_only;
 extern int typelib_only;
-extern int compat_icom;
 
 extern char *input_name;
 extern char *header_name;
diff --git a/tools/widl/widl.man b/tools/widl/widl.man
index c65bd7e..dfbb417 100644
--- a/tools/widl/widl.man
+++ b/tools/widl/widl.man
@@ -23,18 +23,16 @@
 Print version number and exits from the program.
 .PP
 .B Header options:
-.IP \fB-b\fR
-Make headers compatible with ICOM macros.
 .IP \fB-h\fR
 Only generate header files.
 .IP "\fB-H \fIfile\fR"
-Name of header file to include. The default header
+Name of header file to generate. The default header
 filename is infile.h.
+.PP
+.B Preprocessor options:
 .IP "\fB-I \fIpath\fR"
 Add a header search dir to path. Multiple search 
 dirs are allowed.
-.PP
-.B Preprocessor options:
 .IP "\fB-D \fIid[=val]\fR"
 Define preprocessor identifier id value.
 .IP \fB-E\fR