mirror of
https://github.com/reactos/reactos.git
synced 2025-06-12 17:28:31 +00:00
[PSDK] PSDK-compatibility: Add the SList function declarations to winbase.h.
This commit is contained in:
parent
adf023e38c
commit
f6baf266e1
1 changed files with 31 additions and 1 deletions
|
@ -3883,11 +3883,41 @@ InitOnceExecuteOnce(
|
|||
_Inout_opt_ PVOID Parameter,
|
||||
_Outptr_opt_result_maybenull_ LPVOID *Context);
|
||||
|
||||
|
||||
#if defined(_SLIST_HEADER_) && !defined(_NTOS_) && !defined(_NTOSP_)
|
||||
|
||||
WINBASEAPI
|
||||
VOID
|
||||
WINAPI
|
||||
InitializeSListHead(
|
||||
_Out_ PSLIST_HEADER ListHead);
|
||||
_Out_ PSLIST_HEADER ListHead);
|
||||
|
||||
WINBASEAPI
|
||||
PSLIST_ENTRY
|
||||
WINAPI
|
||||
InterlockedPopEntrySList(
|
||||
_Inout_ PSLIST_HEADER ListHead);
|
||||
|
||||
WINBASEAPI
|
||||
PSLIST_ENTRY
|
||||
WINAPI
|
||||
InterlockedPushEntrySList(
|
||||
_Inout_ PSLIST_HEADER ListHead,
|
||||
_Inout_ PSLIST_ENTRY ListEntry);
|
||||
|
||||
WINBASEAPI
|
||||
PSLIST_ENTRY
|
||||
WINAPI
|
||||
InterlockedFlushSList(
|
||||
_Inout_ PSLIST_HEADER ListHead);
|
||||
|
||||
WINBASEAPI
|
||||
USHORT
|
||||
WINAPI
|
||||
QueryDepthSList(
|
||||
_In_ PSLIST_HEADER ListHead);
|
||||
|
||||
#endif /* _SLIST_HEADER_ */
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(pop)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue