mirror of
https://github.com/reactos/reactos.git
synced 2025-05-13 22:30:21 +00:00
25 lines
468 B
C
25 lines
468 B
C
![]() |
/*
|
||
|
* PROJECT: ReactOS SDK
|
||
|
* LICENSE: MIT (https://spdx.org/licenses/MIT)
|
||
|
* PURPOSE: API definitions for api-ms-win-core-synch-l1
|
||
|
* COPYRIGHT: Copyright 2024 Timo Kreuzer (timo.kreuzer@reactos.org)
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
WINBASEAPI
|
||
|
BOOL
|
||
|
WINAPI
|
||
|
InitializeCriticalSectionEx(
|
||
|
_Out_ LPCRITICAL_SECTION lpCriticalSection,
|
||
|
_In_ DWORD dwSpinCount,
|
||
|
_In_ DWORD Flags);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
} // extern "C"
|
||
|
#endif
|