[winedump] Adds FLOAT to known/recognized argument types

Peter Berg Larsen pebl at math.ku.dk
Mon Jan 3 01:52:00 CST 2005


Changelog:
  Adds the word "FLOAT" to be recognized as argument type float.


diff -rup wine-20041201-org/tools/winedump/symbol.c wine/tools/winedump/symbol.c
--- wine-20041201-org/tools/winedump/symbol.c	2003-07-22 02:56:31.000000000 +0200
+++ wine/tools/winedump/symbol.c	2004-12-30 00:06:05.000000000 +0100
@@ -259,7 +259,7 @@ int   symbol_get_type (const char *strin
   if (strstr (string, "double"))
     return ARG_DOUBLE;

-  if (strstr (string, "float"))
+  if (strstr (string, "float") || strstr (string, "FLOAT"))
     return ARG_FLOAT;

   if (strstr (string, "void") || strstr (string, "VOID"))





More information about the wine-patches mailing list