Alexandre Julliard : msvcr90: Fix function pointer declaration that confuses winapi_extract.

Alexandre Julliard julliard at winehq.org
Mon Apr 18 11:10:51 CDT 2011


Module: wine
Branch: master
Commit: ed64b3761deeb052e16452317e150218dc210b0b
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=ed64b3761deeb052e16452317e150218dc210b0b

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Fri Apr 15 21:02:42 2011 +0200

msvcr90: Fix function pointer declaration that confuses winapi_extract.

---

 dlls/msvcr90/msvcr90.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/msvcr90/msvcr90.c b/dlls/msvcr90/msvcr90.c
index f2adb04..fe563e3 100644
--- a/dlls/msvcr90/msvcr90.c
+++ b/dlls/msvcr90/msvcr90.c
@@ -66,8 +66,8 @@ typedef struct __type_info
   char        mangled[32]; /* Variable length, but we declare it large enough for static RTTI */
 } type_info;
 
-typedef void* (*__cdecl malloc_func_t)(size_t);
-typedef void  (*__cdecl free_func_t)(void*);
+typedef void* (__cdecl *malloc_func_t)(size_t);
+typedef void  (__cdecl *free_func_t)(void*);
 
 extern char* __cdecl __unDName(char *,const char*,int,malloc_func_t,free_func_t,unsigned short int);
 




More information about the wine-cvs mailing list