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.
37 lines
508 B
37 lines
508 B
/*++
|
|
|
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
Header Name:
|
|
|
|
vspace.h
|
|
|
|
Abstract:
|
|
|
|
Hooks for virtual space APIs and virtual space tracker.
|
|
|
|
Author:
|
|
|
|
Silviu Calinoiu (SilviuC) 1-Mar-2001
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _VSPACE_H_
|
|
#define _VSPACE_H_
|
|
|
|
#include "public.h"
|
|
|
|
NTSTATUS
|
|
AVrfpVsTrackInitialize (
|
|
VOID
|
|
);
|
|
|
|
NTSTATUS
|
|
AVrfpVsTrackDeleteRegionContainingAddress (
|
|
PVOID Address
|
|
);
|
|
|
|
#endif // #ifndef _VSPACE_H_
|
|
|