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.

51 lines
757 B

  1. /*++
  2. Copyright (c) 1989 Microsoft Corporation
  3. Module Name:
  4. avrfp.h
  5. Abstract:
  6. Internal application verifier header.
  7. Author:
  8. Silviu Calinoiu (SilviuC) 2-Feb-2001
  9. Revision History:
  10. --*/
  11. #ifndef _AVRFP_
  12. #define _AVRFP_
  13. //
  14. // Application verifier interfaces used in other parts
  15. // of the loader.
  16. //
  17. VOID
  18. AVrfInitializeVerifier (
  19. BOOLEAN EnabledSystemWide,
  20. PCUNICODE_STRING ImageName,
  21. ULONG Phase
  22. );
  23. NTSTATUS
  24. AVrfDllLoadNotification (
  25. PLDR_DATA_TABLE_ENTRY LoadedDllData
  26. );
  27. VOID
  28. AVrfDllUnloadNotification (
  29. PLDR_DATA_TABLE_ENTRY LoadedDllData
  30. );
  31. NTSTATUS
  32. AVrfPageHeapDllNotification (
  33. PLDR_DATA_TABLE_ENTRY LoadedDllData
  34. );
  35. #endif // _AVRFP_