mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
527f2f9057
* Create a branch for some evul shell experiments. svn path=/branches/shell-experiments/; revision=61927
25 lines
376 B
C
25 lines
376 B
C
#pragma once
|
|
|
|
#ifdef _WIN64
|
|
VOID
|
|
NTAPI
|
|
RtlInitializeSListHead(IN PSLIST_HEADER ListHead);
|
|
#define InitializeSListHead RtlInitializeSListHead
|
|
#endif
|
|
|
|
NTSTATUS
|
|
NTAPI
|
|
RtlQueryAtomListInAtomTable(
|
|
IN PRTL_ATOM_TABLE AtomTable,
|
|
IN ULONG MaxAtomCount,
|
|
OUT ULONG *AtomCount,
|
|
OUT RTL_ATOM *AtomList
|
|
);
|
|
|
|
VOID
|
|
NTAPI
|
|
RtlInitializeRangeListPackage(
|
|
VOID
|
|
);
|
|
|
|
/* EOF */
|