http://git.etersoft.ru/projects
/
wine
/
eterwine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
41dfdb2
)
msvcr90: Fix function pointer declaration that confuses winapi_extract.
author
Alexandre Julliard
<julliard@winehq.org>
Fri, 15 Apr 2011 19:02:42 +0000
(21:02 +0200)
committer
Alexandre Julliard
<julliard@winehq.org>
Fri, 15 Apr 2011 19:02:42 +0000
(21:02 +0200)
dlls/msvcr90/msvcr90.c
patch
|
blob
|
blame
|
history
diff --git
a/dlls/msvcr90/msvcr90.c
b/dlls/msvcr90/msvcr90.c
index f2adb0484b9f4f30175e2f027840e3a5b671df48..fe563e377711870ee4d5ad1924360c5f74b82d68 100644
(file)
--- 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);