// Copyright 2022 Colin Finck <colin@reactos.org>
// SPDX-License-Identifier: MIT OR Apache-2.0
use crateSealed;
use crateNtListType;
/// Designates a list as an NT singly linked list (`SINGLE_LIST_ENTRY` structure of the Windows NT API).
///
/// You usually want to use `#[derive(NtSingleList)]` to implement [`NtTypedList`] with type set to `NtSingleList`.
///
/// [`NtTypedList`]: crate::traits::NtTypedList
/// Singly linked list type (`SINGLE_LIST_ENTRY` structure of the Windows NT API)
/// Designates an empty enum as a singly linked list.
///
/// Technically, this macro implements [`NtTypedList`] with type set to [`enum@NtSingleList`].
///
/// [`NtTypedList`]: crate::traits::NtTypedList
pub use NtSingleList;