Rename struct option in order to avoid a conflict with wine/port.h

Dmitry Timoshkov dmitry at baikal.ru
Tue Oct 11 04:54:14 CDT 2005


Hello,

Changelog:
    Dmitry Timoshkov <dmitry at codeweavers.com>
    Rename struct option in order to avoid a conflict with wine/port.h.

--- cvs/hq/wine/tools/winedump/main.c	2005-08-05 15:18:19.000000000 +0900
+++ wine/tools/winedump/main.c	2005-10-11 18:48:46.000000000 +0900
@@ -198,7 +198,7 @@ static void do_dumpall(void)
     globals.dumpsect = "ALL";
 }
 
-struct option
+struct my_option
 {
   const char *name;
   Mode mode;
@@ -207,7 +207,7 @@ struct option
   const char *usage;
 };
 
-static const struct option option_table[] = {
+static const struct my_option option_table[] = {
   {"--help",NONE, 0, do_usage,    "--help       Display this help message"},
   {"-h",    NONE, 0, do_usage,    "-h           Synonym for --help"},
   {"-?",    NONE, 0, do_usage,    "-?           Synonym for --help"},
@@ -237,7 +237,7 @@ static const struct option option_table[
 
 void do_usage (void)
 {
-    const struct option *opt;
+    const struct my_option *opt;
     printf ("Usage: winedump [-h | sym <sym> | spec <dll> | dump <dll> | emf <emf> | lnk <lnk>]\n");
     printf ("Mode options (can be put as the mode (sym/spec/dump...) is declared):\n");
     printf ("\tWhen used in --help mode\n");
@@ -277,7 +277,7 @@ void do_usage (void)
  */
 static void parse_options (char *argv[])
 {
-  const struct option *opt;
+  const struct my_option *opt;
   char *const *ptr;
   const char *arg = NULL;
 






More information about the wine-patches mailing list