1 /* 2 * PROJECT: ReactOS SDK 3 * LICENSE: MIT (https://spdx.org/licenses/MIT) 4 * PURPOSE: API definitions for api-ms-win-core-synch-l1 5 * COPYRIGHT: Copyright 2024 Timo Kreuzer (timo.kreuzer@reactos.org) 6 */ 7 8 #pragma once 9 10 #ifdef __cplusplus 11 extern "C" { 12 #endif 13 14 WINBASEAPI 15 BOOL 16 WINAPI 17 InitializeCriticalSectionEx( 18 _Out_ LPCRITICAL_SECTION lpCriticalSection, 19 _In_ DWORD dwSpinCount, 20 _In_ DWORD Flags); 21 22 #ifdef __cplusplus 23 } // extern "C" 24 #endif 25