msvcr90: Fix function pointer declaration that confuses winapi_extract.

oldstable
Alexandre Julliard 2011-04-15 21:02:42 +02:00
parent 41dfdb28c7
commit ed64b3761d
1 changed files with 2 additions and 2 deletions

View File

@ -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);