24 lines
788 B
C++
24 lines
788 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:
|
|
// Pch.cpp
|
|
//
|
|
// Abstract:
|
|
// Source file that includes just the standard includes.
|
|
// Pch.pch will be the pre-compiled header.
|
|
// Pch.obj will contain the pre-compiled type information.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "Pch.h"
|
|
|
|
// NOTE: reference any additional headers you need in PCH.H
|
|
// and not in this file
|