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
2df1afdf
Commit
2df1afdf
authored
Apr 25, 1999
by
Uwe Bonnes
Committed by
Alexandre Julliard
Apr 25, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a stub for GlobalMasterHandle.
parent
c85f0992
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
1 deletion
+17
-1
kernel.spec
if1632/kernel.spec
+1
-1
toolhelp.c
misc/toolhelp.c
+16
-0
No files found.
if1632/kernel.spec
View file @
2df1afdf
...
...
@@ -32,7 +32,7 @@ file krnl386.exe
25 pascal GlobalCompact(long) GlobalCompact16
26 pascal16 GlobalFreeAll(word) GlobalFreeAll16
27 pascal16 GetModuleName(word ptr word) GetModuleName16
28
stub GlobalMasterHandle
28
pascal GlobalMasterHandle() GlobalMasterHandle16
29 pascal16 Yield() Yield16
30 pascal16 WaitEvent(word) WaitEvent16
31 pascal16 PostEvent(word) PostEvent16
...
...
misc/toolhelp.c
View file @
2df1afdf
...
...
@@ -211,3 +211,19 @@ BOOL WINAPI Module32Next(HANDLE hSnapshot, LPMODULEENTRY lpme)
FIXME
(
toolhelp
,
"(%d,%p),stub!
\n
"
,
hSnapshot
,
lpme
);
return
FALSE
;
}
/************************************************************************
* GlobalMasterHandle16 (KERNEL.28)
*
*
* Should return selector and handle of the information structure for
* the global heap. selector and handle are stored in the THHOOK as
* pGlobalHeap and hGlobalHeap.
* As Wine doesn't have this structure, we return both values as zero
* Applications should interpret this as "No Global Heap"
*/
DWORD
WINAPI
GlobalMasterHandle16
(
void
)
{
FIXME
(
toolhelp
,
": stub
\n
"
);
return
0
;
}
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