52 lines
757 B
C
Raw Permalink Normal View History

2001-01-01 00:00:00 +01:00
/*++
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_