File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3193,14 +3193,14 @@ RtlInitializeCriticalSectionAndSpinCount(
31933193);
31943194
31953195NTSYSAPI
3196- ULONG
3196+ LOGICAL
31973197NTAPI
31983198RtlIsCriticalSectionLocked (
31993199 _In_ PRTL_CRITICAL_SECTION CriticalSection
32003200);
32013201
32023202NTSYSAPI
3203- ULONG
3203+ LOGICAL
32043204NTAPI
32053205RtlIsCriticalSectionLockedByThread (
32063206 _In_ PRTL_CRITICAL_SECTION CriticalSection
Original file line number Diff line number Diff line change @@ -863,14 +863,14 @@ RtlCheckForOrphanedCriticalSections(HANDLE ThreadHandle)
863863 UNIMPLEMENTED ;
864864}
865865
866- ULONG
866+ LOGICAL
867867NTAPI
868868RtlIsCriticalSectionLocked (PRTL_CRITICAL_SECTION CriticalSection )
869869{
870870 return CriticalSection -> RecursionCount != 0 ;
871871}
872872
873- ULONG
873+ LOGICAL
874874NTAPI
875875RtlIsCriticalSectionLockedByThread (PRTL_CRITICAL_SECTION CriticalSection )
876876{
You can’t perform that action at this time.
0 commit comments