You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
400 B
12 lines
400 B
|
7 years ago
|
#pragma once
|
||
|
|
|
||
|
7 years ago
|
namespace dvl {
|
||
|
|
|
||
|
7 years ago
|
typedef void *CRITICAL_SECTION, **LPCRITICAL_SECTION;
|
||
|
7 years ago
|
void WINAPI InitializeCriticalSection(LPCRITICAL_SECTION lpCriticalSection);
|
||
|
|
void WINAPI EnterCriticalSection(LPCRITICAL_SECTION lpCriticalSection);
|
||
|
|
void WINAPI LeaveCriticalSection(LPCRITICAL_SECTION lpCriticalSection);
|
||
|
|
void WINAPI DeleteCriticalSection(LPCRITICAL_SECTION lpCriticalSection);
|
||
|
7 years ago
|
|
||
|
7 years ago
|
} // namespace dvl
|