Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
77699886
Commit
77699886
authored
Apr 20, 2010
by
Piotr Caban
Committed by
Alexandre Julliard
Apr 21, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Added _get_heap_handle implementation.
parent
23d0369d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
3 deletions
+11
-3
msvcr80.spec
dlls/msvcr80/msvcr80.spec
+1
-1
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+1
-1
heap.c
dlls/msvcrt/heap.c
+8
-0
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
No files found.
dlls/msvcr80/msvcr80.spec
View file @
77699886
...
...
@@ -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
...
...
dlls/msvcr90/msvcr90.spec
View file @
77699886
...
...
@@ -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
...
...
dlls/msvcrt/heap.c
View file @
77699886
...
...
@@ -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
)
...
...
dlls/msvcrt/msvcrt.spec
View file @
77699886
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment