Lots of changes to the kernel
[reactos.git] / reactos / lib / kernel32 / synch / critical.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS system libraries
4 * FILE: lib/kernel32/sync/critical.c
5 * PURPOSE: Critical regions
6 * UPDATE HISTORY:
7 * Created 30/09/98
8 */
9
10 /* INCLUDES ******************************************************************/
11
12 #include <windows.h>
13
14 #include <kernel32/kernel32.h>
15
16 /* FUNCTIONS *****************************************************************/
17
18 VOID DeleteCriticalSection(LPCRITICAL_SECTION lpCriticalSection)
19 {
20 UNIMPLEMENTED;
21 }
22
23 VOID EnterCriticalSection(LPCRITICAL_SECTION lpCriticalSection)
24 {
25 UNIMPLEMENTED;
26 }
27
28 VOID InitializeCriticalSection(LPCRITICAL_SECTION pcritical)
29 {
30 UNIMPLEMENTED;
31 }
32
33 VOID LeaveCriticalSection(LPCRITICAL_SECTION lpCriticalSection)
34 {
35 UNIMPLEMENTED;
36 }
37
38 WINBOOL TryEnterCriticalSection(LPCRITICAL_SECTION lpCriticalSection)
39 {
40 UNIMPLEMENTED;
41 return(FALSE);
42 }
43