mirror of
https://github.com/reactos/reactos.git
synced 2025-02-21 16:04:57 +00:00
[CRT]
- Fix declaration of malloc_func_t and free_func_t. Already sent upstream(TM) svn path=/trunk/; revision=56508
This commit is contained in:
parent
aa98e3086e
commit
e8beca164c
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue