Commit 77699886 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcrt: Added _get_heap_handle implementation.

parent 23d0369d
......@@ -469,7 +469,7 @@
@ stub _get_dstbias
@ stub _get_errno
@ stub _get_fmode
@ stub _get_heap_handle
@ cdecl _get_heap_handle() msvcrt._get_heap_handle
@ cdecl _get_invalid_parameter_handler() msvcrt._get_invalid_parameter_handler
@ cdecl _get_osfhandle(long) msvcrt._get_osfhandle
@ stub _get_osplatform
......
......@@ -461,7 +461,7 @@
@ stub _get_dstbias
@ stub _get_errno
@ stub _get_fmode
@ stub _get_heap_handle
@ cdecl _get_heap_handle() msvcrt._get_heap_handle
@ cdecl _get_invalid_parameter_handler() msvcrt._get_invalid_parameter_handler
@ cdecl _get_osfhandle(long) msvcrt._get_osfhandle
@ stub _get_output_format
......
......@@ -253,6 +253,14 @@ int CDECL _heapadd(void* mem, MSVCRT_size_t size)
}
/*********************************************************************
* _heapadd (MSVCRT.@)
*/
MSVCRT_intptr_t CDECL _get_heap_handle(void)
{
return (MSVCRT_intptr_t)GetProcessHeap();
}
/*********************************************************************
* _msize (MSVCRT.@)
*/
MSVCRT_size_t CDECL _msize(void* mem)
......
......@@ -428,7 +428,7 @@
# stub _get_errno
# stub _get_fileinfo
# stub _get_fmode
# stub _get_heap_handle
@ cdecl _get_heap_handle()
@ cdecl _get_osfhandle(long)
# stub _get_osplatform
# stub _get_osver
......
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