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
bf97962a
Commit
bf97962a
authored
Aug 27, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid including stackframe.h if it's not needed.
parent
617839d5
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
15 additions
and
15 deletions
+15
-15
sec.c
dlls/ntdll/sec.c
+0
-1
signal_i386.c
dlls/ntdll/signal_i386.c
+0
-1
signal_powerpc.c
dlls/ntdll/signal_powerpc.c
+0
-1
signal_sparc.c
dlls/ntdll/signal_sparc.c
+0
-1
dosvm.c
dlls/winedos/dosvm.c
+1
-1
int31.c
dlls/winedos/int31.c
+1
-1
relay.c
dlls/winedos/relay.c
+1
-1
selector.c
memory/selector.c
+0
-1
relay386.c
relay32/relay386.c
+2
-2
syslevel.c
scheduler/syslevel.c
+2
-1
thread.c
scheduler/thread.c
+0
-1
device.c
win32/device.c
+8
-1
except.c
win32/except.c
+0
-1
win.c
windows/win.c
+0
-1
No files found.
dlls/ntdll/sec.c
View file @
bf97962a
...
...
@@ -37,7 +37,6 @@
#include "winnls.h"
#include "wine/debug.h"
#include "winerror.h"
#include "stackframe.h"
#include "winternl.h"
#include "winreg.h"
...
...
dlls/ntdll/signal_i386.c
View file @
bf97962a
...
...
@@ -403,7 +403,6 @@ typedef struct
#define T_UNKNOWN (-1)
/* Unknown fault (TRAP_sig not defined) */
#include "wine/exception.h"
#include "stackframe.h"
#include "global.h"
#include "miscemu.h"
#include "syslevel.h"
...
...
dlls/ntdll/signal_powerpc.c
View file @
bf97962a
...
...
@@ -54,7 +54,6 @@
#include "wine/library.h"
#include "wine/exception.h"
#include "selectors.h"
#include "stackframe.h"
#include "global.h"
#include "ntdll_misc.h"
#include "miscemu.h"
...
...
dlls/ntdll/signal_sparc.c
View file @
bf97962a
...
...
@@ -36,7 +36,6 @@
#include "wine/exception.h"
#include "global.h"
#include "stackframe.h"
#include "ntdll_misc.h"
#include "wine/debug.h"
...
...
dlls/winedos/dosvm.c
View file @
bf97962a
...
...
@@ -50,7 +50,7 @@
#include "miscemu.h"
#include "dosexe.h"
#include "dosvm.h"
#include "
stackframe
.h"
#include "
thread
.h"
#include "wine/debug.h"
#include "excpt.h"
...
...
dlls/winedos/int31.c
View file @
bf97962a
...
...
@@ -32,7 +32,7 @@
#include "excpt.h"
#include "wine/debug.h"
#include "wine/exception.h"
#include "
stackframe
.h"
#include "
thread
.h"
#include "toolhelp.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
int31
);
...
...
dlls/winedos/relay.c
View file @
bf97962a
...
...
@@ -19,7 +19,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "dosexe.h"
#include "
stackframe
.h"
#include "
thread
.h"
#include "wine/debug.h"
#include "builtin16.h"
...
...
memory/selector.c
View file @
bf97962a
...
...
@@ -27,7 +27,6 @@
#include "wine/winbase16.h"
#include "miscemu.h"
#include "selectors.h"
#include "stackframe.h"
#include "wine/server.h"
#include "wine/debug.h"
#include "toolhelp.h"
...
...
relay32/relay386.c
View file @
bf97962a
...
...
@@ -26,7 +26,6 @@
#include <stdio.h>
#include "winternl.h"
#include "stackframe.h"
#include "wine/unicode.h"
#include "wine/debug.h"
#include "ntdll_misc.h"
...
...
@@ -525,7 +524,8 @@ void WINAPI RELAY_DoCallFrom32Regs( CONTEXT86 *context )
WORD
nb_args
=
relay
->
args
/
sizeof
(
int
);
/* remove extra stuff from the stack */
context
->
Eip
=
stack32_pop
(
context
);
context
->
Eip
=
*
(
DWORD
*
)
context
->
Esp
;
context
->
Esp
+=
sizeof
(
DWORD
);
args
=
(
int
*
)
context
->
Esp
;
if
(
relay
->
ret
==
0xc2
)
/* stdcall */
context
->
Esp
+=
nb_args
*
sizeof
(
int
);
...
...
scheduler/syslevel.c
View file @
bf97962a
...
...
@@ -25,8 +25,9 @@
#endif
#include <sys/types.h>
#include "winternl.h"
#include "wine/winbase16.h"
#include "syslevel.h"
#include "
stackframe
.h"
#include "
thread
.h"
#include "wine/library.h"
#include "wine/debug.h"
...
...
scheduler/thread.c
View file @
bf97962a
...
...
@@ -40,7 +40,6 @@
#include "selectors.h"
#include "winnt.h"
#include "wine/server.h"
#include "stackframe.h"
#include "wine/debug.h"
#include "winnls.h"
...
...
win32/device.c
View file @
bf97962a
...
...
@@ -36,12 +36,12 @@
#include "winbase.h"
#include "winreg.h"
#include "winerror.h"
#include "winnls.h"
#include "file.h"
#include "winioctl.h"
#include "winnt.h"
#include "msdos.h"
#include "miscemu.h"
#include "stackframe.h"
#include "wine/server.h"
#include "wine/debug.h"
#include "callback.h"
...
...
@@ -334,6 +334,13 @@ LPCSTR VMM_Service_Name[N_VMM_SERVICE] =
#define PCC_NOLIN 0x10000000
/* don't map to any linear address */
/* Pop a DWORD from the 32-bit stack */
static
inline
DWORD
stack32_pop
(
CONTEXT86
*
context
)
{
DWORD
ret
=
*
(
DWORD
*
)
context
->
Esp
;
context
->
Esp
+=
sizeof
(
DWORD
);
return
ret
;
}
HANDLE
DEVICE_Open
(
LPCWSTR
filenameW
,
DWORD
access
,
LPSECURITY_ATTRIBUTES
sa
)
{
...
...
win32/except.c
View file @
bf97962a
...
...
@@ -47,7 +47,6 @@
#include "wine/exception.h"
#include "wine/library.h"
#include "thread.h"
#include "stackframe.h"
#include "excpt.h"
#include "wine/server.h"
#include "wine/unicode.h"
...
...
windows/win.c
View file @
bf97962a
...
...
@@ -38,7 +38,6 @@
#include "message.h"
#include "winpos.h"
#include "winerror.h"
#include "stackframe.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
win
);
...
...
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