mirror of
https://github.com/reactos/reactos.git
synced 2025-05-30 06:28:34 +00:00
Fixed STDCALL bugs.
svn path=/trunk/; revision=616
This commit is contained in:
parent
36df88668d
commit
f72b0c8878
4 changed files with 4 additions and 7 deletions
|
@ -59,7 +59,6 @@ NtQuerySystemTime (
|
|||
|
||||
|
||||
VOID
|
||||
STDCALL
|
||||
ExLocalTimeToSystemTime (
|
||||
PLARGE_INTEGER LocalTime,
|
||||
PLARGE_INTEGER SystemTime
|
||||
|
@ -71,7 +70,6 @@ ExLocalTimeToSystemTime (
|
|||
|
||||
|
||||
VOID
|
||||
STDCALL
|
||||
ExSystemTimeToLocalTime (
|
||||
PLARGE_INTEGER SystemTime,
|
||||
PLARGE_INTEGER LocalTime
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; $Id: ntoskrnl.def,v 1.14 1999/07/29 21:25:04 ekohl Exp $
|
||||
; $Id: ntoskrnl.def,v 1.15 1999/08/17 12:01:38 ekohl Exp $
|
||||
;
|
||||
; reactos/ntoskrnl/ntoskrnl.def
|
||||
;
|
||||
|
@ -81,7 +81,7 @@ KeBugCheck
|
|||
KeBugCheckEx
|
||||
KeFlushIoBuffers
|
||||
KeGetCurrentIrql
|
||||
KeGetPreviousMode@0
|
||||
KeGetPreviousMode
|
||||
KeInitializeDpc
|
||||
KeInitializeEvent
|
||||
KeInitializeSpinLock
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; $Id: ntoskrnl.edf,v 1.2 1999/07/29 21:25:04 ekohl Exp $
|
||||
; $Id: ntoskrnl.edf,v 1.3 1999/08/17 12:01:39 ekohl Exp $
|
||||
;
|
||||
; reactos/ntoskrnl/ntoskrnl.def
|
||||
;
|
||||
|
@ -81,7 +81,7 @@ KeBugCheck
|
|||
KeBugCheckEx
|
||||
KeFlushIoBuffers
|
||||
KeGetCurrentIrql
|
||||
KeGetPreviousMode=KeGetPreviousMode@0
|
||||
KeGetPreviousMode
|
||||
KeInitializeDpc
|
||||
KeInitializeEvent
|
||||
KeInitializeSpinLock
|
||||
|
|
|
@ -126,7 +126,6 @@ NtQueryInformationThread (
|
|||
|
||||
|
||||
ULONG
|
||||
STDCALL
|
||||
KeGetPreviousMode (VOID)
|
||||
{
|
||||
/* CurrentThread is in ntoskrnl/ps/thread.c */
|
||||
|
|
Loading…
Reference in a new issue