kernel32: Moved private function prototypes out of toolhelp.h.
This commit is contained in:
parent
b088cc5781
commit
72b0389bc6
|
@ -38,7 +38,7 @@
|
||||||
#include "wine/winbase16.h"
|
#include "wine/winbase16.h"
|
||||||
|
|
||||||
#include "kernel_private.h"
|
#include "kernel_private.h"
|
||||||
#include "toolhelp.h"
|
#include "kernel16_private.h"
|
||||||
#include "wine/debug.h"
|
#include "wine/debug.h"
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(dosmem);
|
WINE_DEFAULT_DEBUG_CHANNEL(dosmem);
|
||||||
|
|
|
@ -26,7 +26,6 @@
|
||||||
#include "winternl.h"
|
#include "winternl.h"
|
||||||
#include "wownt32.h"
|
#include "wownt32.h"
|
||||||
|
|
||||||
#include "toolhelp.h"
|
|
||||||
#include "kernel_private.h"
|
#include "kernel_private.h"
|
||||||
#include "kernel16_private.h"
|
#include "kernel16_private.h"
|
||||||
#include "wine/debug.h"
|
#include "wine/debug.h"
|
||||||
|
|
|
@ -188,6 +188,13 @@ static inline void stack16_pop( int size )
|
||||||
NtCurrentTeb()->WOW32Reserved = (char *)NtCurrentTeb()->WOW32Reserved + size;
|
NtCurrentTeb()->WOW32Reserved = (char *)NtCurrentTeb()->WOW32Reserved + size;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* global16.c */
|
||||||
|
extern HGLOBAL16 GLOBAL_CreateBlock( UINT16 flags, void *ptr, DWORD size,
|
||||||
|
HGLOBAL16 hOwner, unsigned char selflags );
|
||||||
|
extern BOOL16 GLOBAL_FreeBlock( HGLOBAL16 handle );
|
||||||
|
extern BOOL16 GLOBAL_MoveBlock( HGLOBAL16 handle, void *ptr, DWORD size );
|
||||||
|
extern HGLOBAL16 GLOBAL_Alloc( WORD flags, DWORD size, HGLOBAL16 hOwner, unsigned char selflags );
|
||||||
|
|
||||||
/* ne_module.c */
|
/* ne_module.c */
|
||||||
extern NE_MODULE *NE_GetPtr( HMODULE16 hModule );
|
extern NE_MODULE *NE_GetPtr( HMODULE16 hModule );
|
||||||
extern WORD NE_GetOrdinal( HMODULE16 hModule, const char *name );
|
extern WORD NE_GetOrdinal( HMODULE16 hModule, const char *name );
|
||||||
|
|
|
@ -35,7 +35,6 @@
|
||||||
|
|
||||||
#include "wine/winbase16.h"
|
#include "wine/winbase16.h"
|
||||||
#include "wine/library.h"
|
#include "wine/library.h"
|
||||||
#include "toolhelp.h"
|
|
||||||
#include "kernel_private.h"
|
#include "kernel_private.h"
|
||||||
#include "kernel16_private.h"
|
#include "kernel16_private.h"
|
||||||
#include "console_private.h"
|
#include "console_private.h"
|
||||||
|
|
|
@ -39,7 +39,6 @@
|
||||||
#include "wine/library.h"
|
#include "wine/library.h"
|
||||||
#include "kernel_private.h"
|
#include "kernel_private.h"
|
||||||
#include "kernel16_private.h"
|
#include "kernel16_private.h"
|
||||||
#include "toolhelp.h"
|
|
||||||
#include "wine/debug.h"
|
#include "wine/debug.h"
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(fixup);
|
WINE_DEFAULT_DEBUG_CHANNEL(fixup);
|
||||||
|
|
|
@ -33,7 +33,6 @@
|
||||||
#include "wine/library.h"
|
#include "wine/library.h"
|
||||||
#include "kernel_private.h"
|
#include "kernel_private.h"
|
||||||
#include "kernel16_private.h"
|
#include "kernel16_private.h"
|
||||||
#include "toolhelp.h"
|
|
||||||
#include "wine/debug.h"
|
#include "wine/debug.h"
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(snoop);
|
WINE_DEFAULT_DEBUG_CHANNEL(snoop);
|
||||||
|
|
|
@ -102,13 +102,6 @@ BOOL16 WINAPI GlobalEntryHandle16( GLOBALENTRY *pGlobal, HGLOBAL16 hItem );
|
||||||
BOOL16 WINAPI GlobalEntryModule16( GLOBALENTRY *pGlobal, HMODULE16 hModule,
|
BOOL16 WINAPI GlobalEntryModule16( GLOBALENTRY *pGlobal, HMODULE16 hModule,
|
||||||
WORD wSeg );
|
WORD wSeg );
|
||||||
|
|
||||||
/* FIXME: Wine internal functions */
|
|
||||||
extern HGLOBAL16 GLOBAL_CreateBlock( UINT16 flags, void *ptr, DWORD size,
|
|
||||||
HGLOBAL16 hOwner, unsigned char selflags );
|
|
||||||
extern BOOL16 GLOBAL_FreeBlock( HGLOBAL16 handle );
|
|
||||||
extern BOOL16 GLOBAL_MoveBlock( HGLOBAL16 handle, void *ptr, DWORD size );
|
|
||||||
extern HGLOBAL16 GLOBAL_Alloc( WORD flags, DWORD size, HGLOBAL16 hOwner, unsigned char selflags );
|
|
||||||
|
|
||||||
/* Local heap */
|
/* Local heap */
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
|
|
Loading…
Reference in New Issue