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
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
Yoann Laissus
wine
Commits
24ee6211
Commit
24ee6211
authored
26 years ago
by
Patrick Spinler
Committed by
Alexandre Julliard
26 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added stubs for Process32First/Process32Next.
parent
241c730d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
include/windows.h
+2
-0
2 additions, 0 deletions
include/windows.h
relay32/kernel32.spec
+2
-2
2 additions, 2 deletions
relay32/kernel32.spec
scheduler/process.c
+15
-0
15 additions, 0 deletions
scheduler/process.c
with
19 additions
and
2 deletions
include/windows.h
+
2
−
0
View file @
24ee6211
...
...
@@ -6980,6 +6980,8 @@ BOOL32 WINAPI PaintDesktop(HDC32);
BOOL32
WINAPI
PlayEnhMetaFile
(
HDC32
,
HENHMETAFILE32
,
const
RECT32
*
);
BOOL32
WINAPI
PlayEnhMetaFileRecord
(
HDC32
,
LPHANDLETABLE32
,
const
ENHMETARECORD
*
,
UINT32
);
BOOL32
WINAPI
PolyPolyline32
(
HDC32
,
const
POINT32
*
,
const
DWORD
*
,
DWORD
);
BOOL32
WINAPI
Process32First
(
HANDLE32
,
LPPROCESSENTRY32
);
BOOL32
WINAPI
Process32Next
(
HANDLE32
,
LPPROCESSENTRY32
);
BOOL32
WINAPI
PulseEvent
(
HANDLE32
);
DWORD
WINAPI
QueryDosDevice32A
(
LPCSTR
,
LPSTR
,
DWORD
);
DWORD
WINAPI
QueryDosDevice32W
(
LPCWSTR
,
LPWSTR
,
DWORD
);
...
...
This diff is collapsed.
Click to expand it.
relay32/kernel32.spec
+
2
−
2
View file @
24ee6211
...
...
@@ -569,8 +569,8 @@ type win32
552 stub PeekNamedPipe
553 stub PostQueuedCompletionStatus
554 stub PrepareTape
555 st
ub
Process32First
556 st
ub
Process32Next
555 st
dcall Process32First (ptr ptr)
Process32First
556 st
dcall Process32Next (ptr ptr)
Process32Next
557 stdcall PulseEvent(long) PulseEvent
558 stdcall PurgeComm(long long) PurgeComm
559 register QT_Thunk() QT_Thunk
...
...
This diff is collapsed.
Click to expand it.
scheduler/process.c
+
15
−
0
View file @
24ee6211
...
...
@@ -896,3 +896,18 @@ void PROCESS_ResumeOtherThreads(void)
SYSTEM_UNLOCK
();
}
BOOL32
WINAPI
Process32First
(
HANDLE32
hSnapshot
,
LPPROCESSENTRY32
lppe
)
{
FIXME
(
process
,
"(0x%08lx,0x%08lx), stub!
\n
"
,
hSnapshot
,
lppe
);
SetLastError
(
ERROR_NO_MORE_FILES
);
return
FALSE
;
}
BOOL32
WINAPI
Process32Next
(
HANDLE32
hSnapshot
,
LPPROCESSENTRY32
lppe
)
{
FIXME
(
process
,
"(0x%08lx,0x%08lx), stub!
\n
"
,
hSnapshot
,
lppe
);
SetLastError
(
ERROR_NO_MORE_FILES
);
return
FALSE
;
}
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