From e8beca164c6597e1bc2f399391d4bb8d40435fe2 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Sat, 5 May 2012 11:49:54 +0000 Subject: [PATCH] [CRT] - Fix declaration of malloc_func_t and free_func_t. Already sent upstream(TM) svn path=/trunk/; revision=56508 --- reactos/lib/sdk/crt/include/internal/wine/msvcrt.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/lib/sdk/crt/include/internal/wine/msvcrt.h b/reactos/lib/sdk/crt/include/internal/wine/msvcrt.h index e7f9f749291..4c15a17e8a9 100644 --- a/reactos/lib/sdk/crt/include/internal/wine/msvcrt.h +++ b/reactos/lib/sdk/crt/include/internal/wine/msvcrt.h @@ -62,8 +62,8 @@ extern wchar_t ** SnapshotOfEnvironmentW(wchar_t **); // void* __cdecl MSVCRT_operator_new(size_t); void __cdecl MSVCRT_operator_delete(void*); -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); extern char* __cdecl __unDNameEx(char *,const char*,int,malloc_func_t,free_func_t,void *,unsigned short int);