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
e3e268e3
Commit
e3e268e3
authored
Mar 18, 1999
by
Marcus Meissner
Committed by
Alexandre Julliard
Mar 18, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added Module32* stubs.
parent
e70b1838
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
2 deletions
+24
-2
toolhelp.c
misc/toolhelp.c
+22
-0
kernel32.spec
relay32/kernel32.spec
+2
-2
No files found.
misc/toolhelp.c
View file @
e3e268e3
...
...
@@ -187,3 +187,25 @@ BOOL WINAPI Process32Next(HANDLE hSnapshot, LPPROCESSENTRY lppe)
{
return
TOOLHELP_Process32Next
(
hSnapshot
,
lppe
,
FALSE
);
}
/***********************************************************************
* Module32First (KERNEL32.527)
*
* Return info about the "first" module in a toolhelp32 snapshot
*/
BOOL
WINAPI
Module32First
(
HANDLE
hSnapshot
,
LPMODULEENTRY
lpme
)
{
FIXME
(
toolhelp
,
"(%d,%p),stub!
\n
"
,
hSnapshot
,
lpme
);
return
FALSE
;
}
/***********************************************************************
* Module32Next (KERNEL32.528)
*
* Return info about the "next" module in a toolhelp32 snapshot
*/
BOOL
WINAPI
Module32Next
(
HANDLE
hSnapshot
,
LPMODULEENTRY
lpme
)
{
FIXME
(
toolhelp
,
"(%d,%p),stub!
\n
"
,
hSnapshot
,
lpme
);
return
FALSE
;
}
relay32/kernel32.spec
View file @
e3e268e3
...
...
@@ -542,8 +542,8 @@ init MAIN_KernelInit
524 stdcall MapSLFix(long) MapSLFix
525 stdcall MapViewOfFile(long long long long long) MapViewOfFile
526 stdcall MapViewOfFileEx(long long long long long ptr) MapViewOfFileEx
527 st
ub
Module32First
528 st
ub
Module32Next
527 st
dcall Module32First(long ptr)
Module32First
528 st
dcall Module32Next(long ptr)
Module32Next
529 stdcall MoveFileA(str str) MoveFileA
530 stdcall MoveFileExA(str str long) MoveFileExA
531 stdcall MoveFileExW(wstr wstr long) MoveFileExW
...
...
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