33 lines
629 B
C
33 lines
629 B
C
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
|
|
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
|
|
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
|
|
// PARTICULAR PURPOSE.
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved
|
|
|
|
/*++
|
|
|
|
Module Name:
|
|
|
|
whearecp.h
|
|
|
|
Abstract:
|
|
|
|
This is the precompiled header for the WHEA record interpretation library.
|
|
|
|
--*/
|
|
|
|
#pragma once
|
|
|
|
#pragma warning(push)
|
|
#pragma warning(disable:4201)
|
|
#pragma warning(disable:4214)
|
|
|
|
#include <windows.h>
|
|
#include <winevt.h>
|
|
#include <wheadef.h>
|
|
#include <cperhlp.h>
|
|
|
|
#pragma warning(pop)
|
|
|