Commit ed64b376 authored by Alexandre Julliard's avatar Alexandre Julliard

msvcr90: Fix function pointer declaration that confuses winapi_extract.

parent 41dfdb28
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment