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
72b0389b
Commit
72b0389b
authored
Sep 28, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Moved private function prototypes out of toolhelp.h.
parent
b088cc57
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
8 additions
and
12 deletions
+8
-12
dosmem.c
dlls/kernel32/dosmem.c
+1
-1
kernel16.c
dlls/kernel32/kernel16.c
+0
-1
kernel16_private.h
dlls/kernel32/kernel16_private.h
+7
-0
kernel_main.c
dlls/kernel32/kernel_main.c
+0
-1
ne_segment.c
dlls/kernel32/ne_segment.c
+0
-1
snoop16.c
dlls/kernel32/snoop16.c
+0
-1
toolhelp.h
dlls/kernel32/toolhelp.h
+0
-7
No files found.
dlls/kernel32/dosmem.c
View file @
72b0389b
...
...
@@ -38,7 +38,7 @@
#include "wine/winbase16.h"
#include "kernel_private.h"
#include "
toolhelp
.h"
#include "
kernel16_private
.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
dosmem
);
...
...
dlls/kernel32/kernel16.c
View file @
72b0389b
...
...
@@ -26,7 +26,6 @@
#include "winternl.h"
#include "wownt32.h"
#include "toolhelp.h"
#include "kernel_private.h"
#include "kernel16_private.h"
#include "wine/debug.h"
...
...
dlls/kernel32/kernel16_private.h
View file @
72b0389b
...
...
@@ -188,6 +188,13 @@ static inline void stack16_pop( int 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 */
extern
NE_MODULE
*
NE_GetPtr
(
HMODULE16
hModule
);
extern
WORD
NE_GetOrdinal
(
HMODULE16
hModule
,
const
char
*
name
);
...
...
dlls/kernel32/kernel_main.c
View file @
72b0389b
...
...
@@ -35,7 +35,6 @@
#include "wine/winbase16.h"
#include "wine/library.h"
#include "toolhelp.h"
#include "kernel_private.h"
#include "kernel16_private.h"
#include "console_private.h"
...
...
dlls/kernel32/ne_segment.c
View file @
72b0389b
...
...
@@ -39,7 +39,6 @@
#include "wine/library.h"
#include "kernel_private.h"
#include "kernel16_private.h"
#include "toolhelp.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
fixup
);
...
...
dlls/kernel32/snoop16.c
View file @
72b0389b
...
...
@@ -33,7 +33,6 @@
#include "wine/library.h"
#include "kernel_private.h"
#include "kernel16_private.h"
#include "toolhelp.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
snoop
);
...
...
dlls/kernel32/toolhelp.h
View file @
72b0389b
...
...
@@ -102,13 +102,6 @@ BOOL16 WINAPI GlobalEntryHandle16( GLOBALENTRY *pGlobal, HGLOBAL16 hItem );
BOOL16
WINAPI
GlobalEntryModule16
(
GLOBALENTRY
*
pGlobal
,
HMODULE16
hModule
,
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 */
typedef
struct
...
...
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