1234567891011121314151617181920212223242526272829303132333435 |
- /**
- * This file is part of the mingw-w64 runtime package.
- * No warranty is given; refer to the file DISCLAIMER within this package.
- */
- #ifndef _INTERLOCKAPI_H_
- #define _INTERLOCKAPI_H_
- #include <apiset.h>
- #include <apisetcconv.h>
- #include <minwindef.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- #if !defined (NOWINBASEINTERLOCK) && !defined (_NTOS_)
- #if defined (_SLIST_HEADER_) && !defined (_NTOSP_)
- WINBASEAPI VOID WINAPI InitializeSListHead (PSLIST_HEADER ListHead);
- WINBASEAPI PSLIST_ENTRY WINAPI InterlockedPopEntrySList (PSLIST_HEADER ListHead);
- WINBASEAPI PSLIST_ENTRY WINAPI InterlockedPushEntrySList (PSLIST_HEADER ListHead, PSLIST_ENTRY ListEntry);
- WINBASEAPI PSLIST_ENTRY WINAPI InterlockedFlushSList (PSLIST_HEADER ListHead);
- WINBASEAPI USHORT WINAPI QueryDepthSList (PSLIST_HEADER ListHead);
- #if NTDDI_VERSION >= 0x06020000
- #define InterlockedPushListSList InterlockedPushListSListEx
- WINBASEAPI PSLIST_ENTRY WINAPI InterlockedPushListSListEx (PSLIST_HEADER ListHead, PSLIST_ENTRY List, PSLIST_ENTRY ListEnd, ULONG Count);
- #endif
- #endif
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif
|