31 lines
449 B
C
31 lines
449 B
C
|
/*++
|
||
|
|
||
|
Copyright (c) 2001 Microsoft Corporation
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
pch.h
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
Precompiled header for the standard application verifier provider.
|
||
|
|
||
|
Author:
|
||
|
|
||
|
Daniel Mihai (DMihai) 2-Feb-2001
|
||
|
|
||
|
Revision History:
|
||
|
|
||
|
--*/
|
||
|
|
||
|
#ifndef _VERIFIER_PCH_H_
|
||
|
#define _VERIFIER_PCH_H_
|
||
|
|
||
|
#include <..\..\ntos\inc\ntos.h> // for InterlockedXxx functions
|
||
|
#include <nt.h>
|
||
|
#include <ntrtl.h>
|
||
|
#include <nturtl.h>
|
||
|
#include <windows.h>
|
||
|
|
||
|
#endif // _VERIFIER_PCH_H_
|