[CRT]
authorThomas Faber <thomas.faber@reactos.org>
Sat, 5 May 2012 11:49:54 +0000 (11:49 +0000)
committerThomas Faber <thomas.faber@reactos.org>
Sat, 5 May 2012 11:49:54 +0000 (11:49 +0000)
- 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

index e7f9f74..4c15a17 100644 (file)
@@ -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);