RtlNtStatusToDosError and RtlNtStatusToPsxErrno declared __stdcall
authorEmanuele Aliberti <ea@iol.it>
Sat, 18 Dec 1999 10:16:11 +0000 (10:16 +0000)
committerEmanuele Aliberti <ea@iol.it>
Sat, 18 Dec 1999 10:16:11 +0000 (10:16 +0000)
svn path=/trunk/; revision=890

reactos/lib/ntdll/def/ntdll.def
reactos/lib/ntdll/def/ntdll.edf
reactos/lib/ntdll/rtl/error.c

index 91fa012..c872d3d 100644 (file)
@@ -1,4 +1,4 @@
-; $Id: ntdll.def,v 1.29 1999/12/12 00:17:25 ekohl Exp $
+; $Id: ntdll.def,v 1.30 1999/12/18 10:16:11 ea Exp $
 ;
 ; ReactOS Operating System
 ;
@@ -490,7 +490,7 @@ RtlLockHeap@4
 RtlMoveMemory@12
 RtlMultiByteToUnicodeN@20
 RtlNormalizeProcessParams@4
-RtlNtStatusToDosError
+RtlNtStatusToDosError@4
 RtlNtStatusToPsxErrno@4
 RtlOemStringToUnicodeSize@4
 RtlOemStringToUnicodeString@12
index 134110f..04759a1 100644 (file)
@@ -1,4 +1,4 @@
-; $Id: ntdll.edf,v 1.19 1999/12/12 00:17:25 ekohl Exp $
+; $Id: ntdll.edf,v 1.20 1999/12/18 10:16:11 ea Exp $
 ;
 ; ReactOS Operating System
 ;
@@ -487,7 +487,7 @@ RtlLockHeap=RtlLockHeap@4
 RtlMoveMemory=RtlMoveMemory@12
 RtlMultiByteToUnicodeN=RtlMultiByteToUnicodeN@20
 RtlNormalizeProcessParams=RtlNormalizeProcessParams@4
-RtlNtStatusToDosError
+RtlNtStatusToDosError=RtlNtStatusToDosError@4
 RtlNtStatusToPsxErrno=RtlNtStatusToPsxErrno@4
 RtlOemStringToUnicodeSize=RtlOemStringToUnicodeSize@4
 RtlOemStringToUnicodeString=RtlOemStringToUnicodeString@12
index e859e75..17c88cf 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: error.c,v 1.2 1999/12/04 21:02:25 ea Exp $
+/* $Id: error.c,v 1.3 1999/12/18 10:16:11 ea Exp $
  *
  * COPYRIGHT:         See COPYING in the top level directory
  * PROJECT:           ReactOS kernel
@@ -8,6 +8,7 @@
  * REVISION HISTORY:
  *                    22/07/99: Added RtlNtStatusToDosError.
  *     1999-11-30: Added RtlNtStatusToPsxErrno.
+ *     1999-12-18: STDCALL RtlNtStatusToDosError
  */
 
 /* INCLUDES *****************************************************************/
@@ -20,7 +21,7 @@
 /* FUNCTIONS ***************************************************************/
 
 
-DWORD RtlNtStatusToDosError(NTSTATUS Status)
+DWORD STDCALL RtlNtStatusToDosError (NTSTATUS Status)
 {
    switch (Status)
    {
@@ -624,7 +625,7 @@ STATUS_VERIFY_REQUIRED               ERROR_MEDIA_CHANGED
  *     RtlNtStatusToPsxErrno
  *
  * DESCRIPTION
- *     Convert an Execute status ID into a POSIX error number
+ *     Convert an Executive status ID into a POSIX error number
  *     (errno.h).
  *     
  * NOTE