mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[NTIFS]
- KeReleaseQueuedSpinLock [XDK] - reorder some #if's - fix Mm64BitPhysicalAddress svn path=/branches/header-work/; revision=46401
This commit is contained in:
parent
f743212592
commit
f71e0e99fd
3 changed files with 14 additions and 23 deletions
|
@ -4689,7 +4689,7 @@ FASTCALL
|
|||
KeAcquireQueuedSpinLock(
|
||||
IN OUT KSPIN_LOCK_QUEUE_NUMBER Number);
|
||||
|
||||
NTHALAPI
|
||||
_DECL_HAL_KE_IMPORT
|
||||
VOID
|
||||
FASTCALL
|
||||
KeReleaseQueuedSpinLock(
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
/* Hardware Abstraction Layer Functions */
|
||||
|
||||
#if defined(USE_DMA_MACROS) && !defined(_NTHAL_) && (defined(_NTDDK_) || defined(_NTDRIVER_)) || defined(_WDM_INCLUDED_)
|
||||
#if (NTDDI_VERSION >= NTDDI_WIN2K)
|
||||
|
||||
#if defined(USE_DMA_MACROS) && !defined(_NTHAL_) && (defined(_NTDDK_) || defined(_NTDRIVER_)) || defined(_WDM_INCLUDED_)
|
||||
$if (_WDMDDK_)
|
||||
|
||||
FORCEINLINE
|
||||
|
@ -69,12 +70,12 @@ HalGetDmaAlignment(
|
|||
}
|
||||
|
||||
$endif
|
||||
|
||||
$if (_NTDDK_)
|
||||
|
||||
#else
|
||||
/* Nothing here */
|
||||
|
||||
#else /* USE_DMA_MACROS ... */
|
||||
|
||||
#if (NTDDI_VERSION >= NTDDI_WIN2K)
|
||||
//DECLSPEC_DEPRECATED_DDK
|
||||
NTHALAPI
|
||||
VOID
|
||||
|
@ -140,18 +141,11 @@ HalAllocateAdapterChannel(
|
|||
IN ULONG NumberOfMapRegisters,
|
||||
IN PDRIVER_CONTROL ExecutionRoutine);
|
||||
|
||||
#endif /* (NTDDI_VERSION >= NTDDI_WIN2K) */
|
||||
|
||||
$endif
|
||||
|
||||
#endif
|
||||
|
||||
$endif /* _NTDDK_ */
|
||||
#endif /* USE_DMA_MACROS ... */
|
||||
$if (_NTDDK_)
|
||||
|
||||
#if !defined(NO_LEGACY_DRIVERS)
|
||||
|
||||
#if (NTDDI_VERSION >= NTDDI_WIN2K)
|
||||
|
||||
NTHALAPI
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
|
@ -201,13 +195,8 @@ BOOLEAN
|
|||
NTAPI
|
||||
HalMakeBeep(
|
||||
IN ULONG Frequency);
|
||||
|
||||
#endif
|
||||
|
||||
#endif /* !defined(NO_LEGACY_DRIVERS) */
|
||||
|
||||
#if (NTDDI_VERSION >= NTDDI_WIN2K)
|
||||
|
||||
NTHALAPI
|
||||
PADAPTER_OBJECT
|
||||
NTAPI
|
||||
|
@ -284,7 +273,9 @@ HalPutScatterGatherList(
|
|||
IN PSCATTER_GATHER_LIST ScatterGather,
|
||||
IN BOOLEAN WriteToDevice);
|
||||
|
||||
$endif /* _NTDDK_ */
|
||||
#endif /* (NTDDI_VERSION >= NTDDI_WIN2K) */
|
||||
$if (_NTDDK_)
|
||||
|
||||
#if (NTDDI_VERSION >= NTDDI_WINXP)
|
||||
NTKERNELAPI
|
||||
|
@ -295,7 +286,7 @@ HalExamineMBR(
|
|||
IN ULONG SectorSize,
|
||||
IN ULONG MBRTypeIdentifier,
|
||||
OUT PVOID *Buffer);
|
||||
#endif
|
||||
#endif /* (NTDDI_VERSION >= NTDDI_WINXP) */
|
||||
|
||||
#if (NTDDI_VERSION >= NTDDI_WIN7)
|
||||
|
||||
|
@ -312,7 +303,7 @@ NTAPI
|
|||
HalFreeHardwareCounters(
|
||||
IN HANDLE CounterSetHandle);
|
||||
|
||||
#endif
|
||||
#endif /* (NTDDI_VERSION >= NTDDI_WIN7) */
|
||||
|
||||
#if defined(_IA64_)
|
||||
#if (NTDDI_VERSION >= NTDDI_WIN2K)
|
||||
|
@ -351,5 +342,5 @@ HalBugCheckSystem(
|
|||
|
||||
#endif /* (NTDDI_VERSION >= NTDDI_WIN7) */
|
||||
|
||||
$endif /* _NTDDK_ */
|
||||
|
||||
$endif
|
||||
|
|
|
@ -142,7 +142,7 @@ typedef enum _MM_SYSTEM_SIZE {
|
|||
MmLargeSystem
|
||||
} MM_SYSTEMSIZE;
|
||||
|
||||
extern PBOOLEAN Mm64BitPhysicalAddress;
|
||||
extern NTKERNELAPI BOOLEAN Mm64BitPhysicalAddress;
|
||||
extern PVOID MmBadPointer;
|
||||
|
||||
$endif /* _WDMDDK_ */
|
||||
|
|
Loading…
Reference in a new issue