Author: hbelusca
Date: Tue Sep 17 23:17:50 2013
New Revision: 60196
URL:
http://svn.reactos.org/svn/reactos?rev=60196&view=rev
Log:
[SOFT386]
Use SOFT386_EXCEPTIONS instead of INT for the ExceptionCode parameter in
Soft386ExceptionWithErrorCode and Soft386Exception.
Modified:
branches/ntvdm/lib/soft386/common.c
branches/ntvdm/lib/soft386/common.h
branches/ntvdm/lib/soft386/common.inl
Modified: branches/ntvdm/lib/soft386/common.c
URL:
http://svn.reactos.org/svn/reactos/branches/ntvdm/lib/soft386/common.c?rev=…
==============================================================================
--- branches/ntvdm/lib/soft386/common.c [iso-8859-1] (original)
+++ branches/ntvdm/lib/soft386/common.c [iso-8859-1] Tue Sep 17 23:17:50 2013
@@ -20,8 +20,7 @@
/* PRIVATE FUNCTIONS **********************************************************/
-static
-inline
+static inline
ULONG
Soft386GetPageTableEntry(PSOFT386_STATE State,
ULONG VirtualAddress)
@@ -434,7 +433,7 @@
VOID
FASTCALL
Soft386ExceptionWithErrorCode(PSOFT386_STATE State,
- INT ExceptionCode,
+ SOFT386_EXCEPTIONS ExceptionCode,
ULONG ErrorCode)
{
SOFT386_IDT_ENTRY IdtEntry;
Modified: branches/ntvdm/lib/soft386/common.h
URL:
http://svn.reactos.org/svn/reactos/branches/ntvdm/lib/soft386/common.h?rev=…
==============================================================================
--- branches/ntvdm/lib/soft386/common.h [iso-8859-1] (original)
+++ branches/ntvdm/lib/soft386/common.h [iso-8859-1] Tue Sep 17 23:17:50 2013
@@ -119,7 +119,7 @@
Soft386ExceptionWithErrorCode
(
PSOFT386_STATE State,
- INT ExceptionCode,
+ SOFT386_EXCEPTIONS ExceptionCode,
ULONG ErrorCode
);
Modified: branches/ntvdm/lib/soft386/common.inl
URL:
http://svn.reactos.org/svn/reactos/branches/ntvdm/lib/soft386/common.inl?re…
==============================================================================
--- branches/ntvdm/lib/soft386/common.inl [iso-8859-1] (original)
+++ branches/ntvdm/lib/soft386/common.inl [iso-8859-1] Tue Sep 17 23:17:50 2013
@@ -11,7 +11,7 @@
FORCEINLINE
VOID
Soft386Exception(PSOFT386_STATE State,
- INT ExceptionCode)
+ SOFT386_EXCEPTIONS ExceptionCode)
{
/* Call the internal function */
Soft386ExceptionWithErrorCode(State, ExceptionCode, 0);