Commit f484a6b9 authored by Alexandre Julliard's avatar Alexandre Julliard

Moved GlobalMasterHandle to global16.c.

parent 510acffe
...@@ -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)
*/ */
......
...@@ -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 (KERNEL32.@)
* *
* *
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment