Commit bf5c7d45 authored by Thomas Faber's avatar Thomas Faber Committed by Alexandre Julliard

msvcrt: Fix malloc_func_t/free_func_t calling convention.

parent eb29d870
......@@ -245,8 +245,8 @@ int __cdecl MSVCRT__set_new_mode(int mode);
void* __cdecl MSVCRT_operator_new(MSVCRT_size_t);
void __cdecl MSVCRT_operator_delete(void*);
typedef void* (*__cdecl malloc_func_t)(MSVCRT_size_t);
typedef void (*__cdecl free_func_t)(void*);
typedef void* (__cdecl *malloc_func_t)(MSVCRT_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);
extern char* __cdecl __unDNameEx(char *,const char*,int,malloc_func_t,free_func_t,void *,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