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
ab2a48ae
Commit
ab2a48ae
authored
Apr 11, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Apr 12, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Remove superfluous semicolons.
parent
a7aa7cb8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
exception.c
dlls/ntdll/exception.c
+2
-2
relay.c
dlls/ntdll/relay.c
+3
-3
signal_i386.c
dlls/ntdll/signal_i386.c
+1
-1
No files found.
dlls/ntdll/exception.c
View file @
ab2a48ae
...
@@ -391,7 +391,7 @@ void WINAPI __regs_RtlRaiseException( EXCEPTION_RECORD *rec, CONTEXT *context )
...
@@ -391,7 +391,7 @@ void WINAPI __regs_RtlRaiseException( EXCEPTION_RECORD *rec, CONTEXT *context )
/**********************************************************************/
/**********************************************************************/
#ifdef DEFINE_REGS_ENTRYPOINT
#ifdef DEFINE_REGS_ENTRYPOINT
DEFINE_REGS_ENTRYPOINT
(
RtlRaiseException
,
4
,
4
)
;
DEFINE_REGS_ENTRYPOINT
(
RtlRaiseException
,
4
,
4
)
#else
#else
void
WINAPI
RtlRaiseException
(
EXCEPTION_RECORD
*
rec
)
void
WINAPI
RtlRaiseException
(
EXCEPTION_RECORD
*
rec
)
{
{
...
@@ -483,7 +483,7 @@ void WINAPI __regs_RtlUnwind( EXCEPTION_REGISTRATION_RECORD* pEndFrame, PVOID un
...
@@ -483,7 +483,7 @@ void WINAPI __regs_RtlUnwind( EXCEPTION_REGISTRATION_RECORD* pEndFrame, PVOID un
/**********************************************************************/
/**********************************************************************/
#ifdef DEFINE_REGS_ENTRYPOINT
#ifdef DEFINE_REGS_ENTRYPOINT
DEFINE_REGS_ENTRYPOINT
(
RtlUnwind
,
16
,
16
)
;
DEFINE_REGS_ENTRYPOINT
(
RtlUnwind
,
16
,
16
)
#else
#else
void
WINAPI
RtlUnwind
(
PVOID
pEndFrame
,
PVOID
unusedEip
,
void
WINAPI
RtlUnwind
(
PVOID
pEndFrame
,
PVOID
unusedEip
,
PEXCEPTION_RECORD
pRecord
,
PVOID
returnEax
)
PEXCEPTION_RECORD
pRecord
,
PVOID
returnEax
)
...
...
dlls/ntdll/relay.c
View file @
ab2a48ae
...
@@ -472,7 +472,7 @@ void WINAPI __regs_relay_call_from_32_regs( struct relay_descr *descr, unsigned
...
@@ -472,7 +472,7 @@ void WINAPI __regs_relay_call_from_32_regs( struct relay_descr *descr, unsigned
}
}
}
}
extern
void
WINAPI
relay_call_from_32_regs
(
void
);
extern
void
WINAPI
relay_call_from_32_regs
(
void
);
DEFINE_REGS_ENTRYPOINT
(
relay_call_from_32_regs
,
16
,
16
)
;
DEFINE_REGS_ENTRYPOINT
(
relay_call_from_32_regs
,
16
,
16
)
/***********************************************************************
/***********************************************************************
...
@@ -945,8 +945,8 @@ void WINAPI __regs_SNOOP_Return( CONTEXT86 *context )
...
@@ -945,8 +945,8 @@ void WINAPI __regs_SNOOP_Return( CONTEXT86 *context )
}
}
/* assembly wrappers that save the context */
/* assembly wrappers that save the context */
DEFINE_REGS_ENTRYPOINT
(
SNOOP_Entry
,
0
,
0
)
;
DEFINE_REGS_ENTRYPOINT
(
SNOOP_Entry
,
0
,
0
)
DEFINE_REGS_ENTRYPOINT
(
SNOOP_Return
,
0
,
0
)
;
DEFINE_REGS_ENTRYPOINT
(
SNOOP_Return
,
0
,
0
)
#else
/* __i386__ */
#else
/* __i386__ */
...
...
dlls/ntdll/signal_i386.c
View file @
ab2a48ae
...
@@ -732,7 +732,7 @@ void WINAPI __regs_get_cpu_context( CONTEXT *context, CONTEXT *regs )
...
@@ -732,7 +732,7 @@ void WINAPI __regs_get_cpu_context( CONTEXT *context, CONTEXT *regs )
*
context
=
*
regs
;
*
context
=
*
regs
;
save_fpu
(
context
);
save_fpu
(
context
);
}
}
DEFINE_REGS_ENTRYPOINT
(
get_cpu_context
,
4
,
4
)
;
DEFINE_REGS_ENTRYPOINT
(
get_cpu_context
,
4
,
4
)
/***********************************************************************
/***********************************************************************
...
...
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