mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
Implementation of _expand and _msize.
svn path=/trunk/; revision=6906
This commit is contained in:
parent
24c9fab813
commit
088e628e66
2 changed files with 19 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
; $Id: msvcrt.def,v 1.25 2003/10/05 18:13:27 navaraf Exp $
|
||||
; $Id: msvcrt.def,v 1.26 2003/12/07 22:59:13 navaraf Exp $
|
||||
;
|
||||
; ReactOS MSVCRT Compatibility Library
|
||||
;
|
||||
|
@ -258,7 +258,7 @@ _execve
|
|||
_execvp
|
||||
_execvpe
|
||||
_exit
|
||||
;_expand
|
||||
_expand
|
||||
_fcloseall
|
||||
_fcvt
|
||||
_fdopen
|
||||
|
@ -443,7 +443,7 @@ _memicmp
|
|||
_mkdir
|
||||
_mktemp
|
||||
;_mktime64
|
||||
;_msize
|
||||
_msize
|
||||
_nextafter
|
||||
_onexit
|
||||
_open
|
||||
|
|
|
@ -69,6 +69,22 @@ void* realloc(void* _ptr, size_t _size)
|
|||
return HeapReAlloc(hHeap, 0, _ptr, _size);
|
||||
}
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
void* _expand(void* _ptr, size_t _size)
|
||||
{
|
||||
return HeapReAlloc(GetProcessHeap(), HEAP_REALLOC_IN_PLACE_ONLY, _ptr, _size);
|
||||
}
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
size_t _msize(void* _ptr)
|
||||
{
|
||||
return HeapSize(GetProcessHeap(), 0, _ptr);
|
||||
}
|
||||
|
||||
/* ?_set_new_mode@@YAHH@Z (MSVCRT.@) */
|
||||
int MSVCRT__set_new_mode(int mode)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue