Leaked source code of windows server 2003
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.
 
 
 
 
 
 

50 lines
723 B

/*++
Copyright (c) Microsoft Corporation. All rights reserved.
Header Name:
critsect.h
Abstract:
This module implements verification functions for
critical section interfaces.
Author:
Daniel Mihai (DMihai) 27-Mar-2001
Revision History:
--*/
#ifndef _CRITSECT_H_
#define _CRITSECT_H_
#include "support.h"
NTSTATUS
CritSectInitialize (
VOID
);
VOID
CritSectUninitialize (
VOID
);
VOID
AVrfpFreeMemLockChecks (
VERIFIER_DLL_FREEMEM_TYPE FreeMemType,
PVOID StartAddress,
SIZE_T RegionSize,
PWSTR UnloadedDllName
);
VOID
AVrfpIncrementOwnedCriticalSections (
LONG Increment
);
#endif // _CRITSECT_H_