[KERNEL32][ROSTESTS][SDK] Enable threadpooling

[NTDLL] Init KeyedEvents even on NT5.2 dll_export
[MEDIA] Update winesync.txt accordingly
[SDK][DLL] Initialize crtical sections at runtime
This commit is contained in:
Justin Miller 2024-04-26 01:03:15 -07:00 committed by Justin Miller
parent 88a63011ea
commit 0bf42067d2
15 changed files with 249 additions and 842 deletions

View file

@ -56,6 +56,7 @@
/* Use intrinsics for x86 and x64 */
#if defined(_M_IX86) || defined(_M_AMD64)
#ifndef InterlockedCompareExchange
#define InterlockedCompareExchange _InterlockedCompareExchange
#define InterlockedIncrement _InterlockedIncrement
#define InterlockedDecrement _InterlockedDecrement
@ -64,5 +65,6 @@
#define InterlockedBitTestAndSet _interlockedbittestandset
#define InterlockedBitTestAndSet64 _interlockedbittestandset64
#endif
#endif
#endif /* RTL_H */