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
f484a6b9
Commit
f484a6b9
authored
Aug 29, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved GlobalMasterHandle to global16.c.
parent
510acffe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
19 deletions
+18
-19
global16.c
dlls/kernel/global16.c
+16
-0
toolhelp.c
dlls/kernel/toolhelp.c
+2
-19
No files found.
dlls/kernel/global16.c
View file @
f484a6b9
...
@@ -901,6 +901,22 @@ HANDLE16 WINAPI FarGetOwner16( HGLOBAL16 handle )
...
@@ -901,6 +901,22 @@ HANDLE16 WINAPI FarGetOwner16( HGLOBAL16 handle )
}
}
/************************************************************************
* GlobalMasterHandle (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
(
": stub
\n
"
);
return
0
;
}
/***********************************************************************
/***********************************************************************
* GlobalHandleToSel (TOOLHELP.50)
* GlobalHandleToSel (TOOLHELP.50)
*/
*/
...
...
dlls/kernel/toolhelp.c
View file @
f484a6b9
...
@@ -32,7 +32,6 @@
...
@@ -32,7 +32,6 @@
#include "winbase.h"
#include "winbase.h"
#include "winerror.h"
#include "winerror.h"
#include "tlhelp32.h"
#include "tlhelp32.h"
#include "toolhelp.h"
#include "wine/server.h"
#include "wine/server.h"
#include "wine/unicode.h"
#include "wine/unicode.h"
#include "wine/debug.h"
#include "wine/debug.h"
...
@@ -342,23 +341,7 @@ BOOL WINAPI Module32Next(HANDLE hSnapshot, LPMODULEENTRY32 lpme)
...
@@ -342,23 +341,7 @@ BOOL WINAPI Module32Next(HANDLE hSnapshot, LPMODULEENTRY32 lpme)
}
}
/************************************************************************
/************************************************************************
* GlobalMasterHandle (KERNEL.28)
* Heap32ListFirst (KERNEL32.@)
*
*
* 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
(
": stub
\n
"
);
return
0
;
}
/************************************************************************
* Heap32ListFirst (KERNEL.@)
*
*
*/
*/
BOOL
WINAPI
Heap32ListFirst
(
HANDLE
hSnapshot
,
LPHEAPLIST32
lphl
)
BOOL
WINAPI
Heap32ListFirst
(
HANDLE
hSnapshot
,
LPHEAPLIST32
lphl
)
...
@@ -368,7 +351,7 @@ BOOL WINAPI Heap32ListFirst(HANDLE hSnapshot, LPHEAPLIST32 lphl)
...
@@ -368,7 +351,7 @@ BOOL WINAPI Heap32ListFirst(HANDLE hSnapshot, LPHEAPLIST32 lphl)
}
}
/******************************************************************
/******************************************************************
* Toolhelp32ReadProcessMemory (KERNEL.@)
* Toolhelp32ReadProcessMemory (KERNEL
32
.@)
*
*
*
*
*/
*/
...
...
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