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.
|
|
/*++
Copyright (c) 1989 Microsoft Corporation
Module Name:
avrfp.h
Abstract:
Internal application verifier header.
Author:
Silviu Calinoiu (SilviuC) 2-Feb-2001
Revision History:
--*/
#ifndef _AVRFP_
#define _AVRFP_
//
// Application verifier interfaces used in other parts
// of the loader.
//
VOID AVrfInitializeVerifier ( BOOLEAN EnabledSystemWide, PCUNICODE_STRING ImageName, ULONG Phase );
NTSTATUS AVrfDllLoadNotification ( PLDR_DATA_TABLE_ENTRY LoadedDllData );
VOID AVrfDllUnloadNotification ( PLDR_DATA_TABLE_ENTRY LoadedDllData );
NTSTATUS AVrfPageHeapDllNotification ( PLDR_DATA_TABLE_ENTRY LoadedDllData );
#endif // _AVRFP_
|