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
e0e248ea
Commit
e0e248ea
authored
Nov 06, 1998
by
Marcus Meissner
Committed by
Alexandre Julliard
Nov 06, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Solaris redefines ERR and CS, fixed occurances.
Solaris has TRAPNO in its sigcontext, added to sig_context.h
parent
46b68f09
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
4 deletions
+9
-4
thunk.c
if1632/thunk.c
+2
-2
debugtools.h
include/debugtools.h
+2
-0
sig_context.h
include/sig_context.h
+3
-0
mmsystem.c
multimedia/mmsystem.c
+1
-1
handle.c
scheduler/handle.c
+1
-1
No files found.
if1632/thunk.c
View file @
e0e248ea
...
...
@@ -19,8 +19,8 @@
#include "task.h"
#include "except.h"
#include "win.h"
#include "debug.h"
#include "flatthunk.h"
#include "debug.h"
/* List of the 16-bit callback functions. This list is used */
...
...
@@ -706,7 +706,7 @@ UINT32 WINAPI ThunkConnect16(
DWORD
dwReason
,
/* [in] initialisation argument */
struct
ThunkDataCommon
*
TD
,
/* [in/out] thunkbuffer */
LPSTR
thunkfun32
,
/* [in] win32 thunkfunction */
WORD
CS
/* [in] CS of win16 dll */
WORD
cs
/* [in] CS of win16 dll */
)
{
BOOL32
directionSL
;
...
...
include/debugtools.h
View file @
e0e248ea
...
...
@@ -59,6 +59,8 @@ extern short debug_msg_enabled[][DEBUG_CLASS_COUNT];
#endif
/* NO_DEBUG_MSGS */
/* define error macro regardless of what is configured */
/* Solaris got an 'ERR' define in <sys/reg.h> */
#undef ERR
#define ERR(ch, fmt, args...) DPRINTF_(err, ch, fmt, ## args)
#define MSG(format, args...) fprintf(stderr, format, ## args)
...
...
include/sig_context.h
View file @
e0e248ea
...
...
@@ -168,6 +168,9 @@ typedef struct _CONTEXT /* Note 1 */
#else
#define ESP_sig(context) ((context)->uc_mcontext.gregs[ESP])
#endif
#ifdef TRAPNO
#define TRAP_sig(context) ((context)->uc_mcontext.gregs[TRAPNO])
#endif
#endif
/* svr4 || SCO_DS */
...
...
multimedia/mmsystem.c
View file @
e0e248ea
...
...
@@ -30,11 +30,11 @@
#include "file.h"
#include "mmsystem.h"
#include "multimedia.h"
#include "debug.h"
#include "xmalloc.h"
#include "callback.h"
#include "module.h"
#include "selectors.h"
#include "debug.h"
int
mciInstalledCount
;
int
mciInstalledListLen
;
...
...
scheduler/handle.c
View file @
e0e248ea
...
...
@@ -6,13 +6,13 @@
#include <assert.h>
#include <stdio.h>
#include "debug.h"
#include "winbase.h"
#include "winerror.h"
#include "heap.h"
#include "process.h"
#include "server.h"
#include "thread.h"
#include "debug.h"
#define HTABLE_SIZE 0x30
/* Handle table initial size */
#define HTABLE_INC 0x10
/* Handle table increment */
...
...
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