2010-02-26 11:43:19 +00:00
|
|
|
#pragma once
|
2003-05-15 11:07:51 +00:00
|
|
|
|
2010-07-23 23:30:00 +00:00
|
|
|
#ifdef _WIN64
|
[HAL/NDK]
- Make Vector parameter in HalEnableSystemInterrupt, HalDisableSystemInterrupt and HalBeginSystemInterrupt an ULONG, not an UCHAR
[NDK]
- 64bit fixes for HANDLE_TABLE, KPROCESS, SECTION_IMAGE_INFORMATION, MMADDRESS_LIST, MMVAD_FLAGS, MMVAD, MMVAD_LONG, MMVAD_SHORT, MEMORY_DESCRIPTOR, MEMORY_ALLOCATION_DESCRIPTOR, LdrVerifyMappedImageMatchesChecksum
- KDPC_DATA::DpcQueueDepth is signed on amd64, unsigned on x86
[NTOSKRNL]
- Fix hundreds of MSVC and amd64 warnings
- add a pragma message to FstubFixupEfiPartition, since it looks broken
- Move portable Ke constants from <arch>/cpu.c to krnlinit.c
- Fixed a bug in amd64 KiGeneralProtectionFaultHandler
svn path=/trunk/; revision=53734
2011-09-18 13:11:45 +00:00
|
|
|
VOID
|
|
|
|
NTAPI
|
|
|
|
RtlInitializeSListHead(IN PSLIST_HEADER ListHead);
|
2010-07-23 23:30:00 +00:00
|
|
|
#define InitializeSListHead RtlInitializeSListHead
|
|
|
|
#endif
|
|
|
|
|
2005-09-26 05:41:35 +00:00
|
|
|
NTSTATUS
|
|
|
|
NTAPI
|
|
|
|
RtlQueryAtomListInAtomTable(
|
|
|
|
IN PRTL_ATOM_TABLE AtomTable,
|
|
|
|
IN ULONG MaxAtomCount,
|
|
|
|
OUT ULONG *AtomCount,
|
|
|
|
OUT RTL_ATOM *AtomList
|
|
|
|
);
|
|
|
|
|
2007-05-09 00:44:45 +00:00
|
|
|
VOID
|
|
|
|
NTAPI
|
|
|
|
RtlInitializeRangeListPackage(
|
|
|
|
VOID
|
|
|
|
);
|
|
|
|
|
2003-05-15 11:07:51 +00:00
|
|
|
/* EOF */
|