Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
7701dea1
Commit
7701dea1
authored
Sep 11, 2003
by
Geoff Thorpe
Committed by
Alexandre Julliard
Sep 11, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a stub for Heap32ListFirst.
parent
b2b72628
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
1 deletion
+20
-1
kernel32.spec
dlls/kernel/kernel32.spec
+1
-1
toolhelp.c
dlls/kernel/toolhelp.c
+10
-0
tlhelp32.h
include/tlhelp32.h
+9
-0
No files found.
dlls/kernel/kernel32.spec
View file @
7701dea1
...
...
@@ -541,7 +541,7 @@
@ stdcall GlobalUnlock(long)
@ stdcall GlobalWire(long)
@ stub Heap32First
@ st
ub Heap32ListFirst
@ st
dcall Heap32ListFirst(long ptr)
@ stub Heap32ListNext
@ stub Heap32Next
@ stdcall HeapAlloc(long long long) ntdll.RtlAllocateHeap
...
...
dlls/kernel/toolhelp.c
View file @
7701dea1
...
...
@@ -423,3 +423,13 @@ DWORD WINAPI GlobalMasterHandle16(void)
FIXME
(
": stub
\n
"
);
return
0
;
}
/************************************************************************
* Heap32ListFirst (KERNEL.@)
*
*/
BOOL
WINAPI
Heap32ListFirst
(
HANDLE
hSnapshot
,
LPHEAPLIST32
lphl
)
{
FIXME
(
": stub
\n
"
);
return
FALSE
;
}
include/tlhelp32.h
View file @
7701dea1
...
...
@@ -146,6 +146,15 @@ BOOL WINAPI Module32NextW(HANDLE,LPMODULEENTRY32W);
#define LPMODULEENTRY32 LPMODULEENTRY32W
#endif
typedef
struct
tagHEAPLIST32
{
SIZE_T
dwSize
;
DWORD
th32ProcessID
;
ULONG_PTR
th32HeapID
;
DWORD
dwFlags
;
}
HEAPLIST32
,
*
PHEAPLIST32
,
*
LPHEAPLIST32
;
BOOL
WINAPI
Heap32ListFirst
(
HANDLE
,
LPHEAPLIST32
);
#ifdef __cplusplus
}
/* extern "C" */
#endif
...
...
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