Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johnny Cai
wine
Commits
e3e268e3
Commit
e3e268e3
authored
26 years ago
by
Marcus Meissner
Committed by
Alexandre Julliard
26 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added Module32* stubs.
parent
e70b1838
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
misc/toolhelp.c
+22
-0
22 additions, 0 deletions
misc/toolhelp.c
relay32/kernel32.spec
+2
-2
2 additions, 2 deletions
relay32/kernel32.spec
with
24 additions
and
2 deletions
misc/toolhelp.c
+
22
−
0
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
;
}
This diff is collapsed.
Click to expand it.
relay32/kernel32.spec
+
2
−
2
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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment