41 lines
930 B
C
41 lines
930 B
C
//////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Common include file for this application.
|
|
//
|
|
// 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.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
#include <new>
|
|
#include <windows.h>
|
|
#include <windowsx.h>
|
|
#include <dwmapi.h>
|
|
#include <d3d9.h>
|
|
#include <assert.h>
|
|
#include <strsafe.h>
|
|
|
|
#pragma warning(push)
|
|
#pragma warning(disable:4201) // Disable warning C4201: nonstandard extension used
|
|
|
|
#include <dxvahd.h>
|
|
|
|
#pragma warning(pop)
|
|
|
|
#include "settings.h"
|
|
#include "utils.h"
|
|
#include "dxvahd_utils.h"
|
|
#include "d3dhelper.h"
|
|
#include "video.h"
|
|
#include "application.h"
|
|
|
|
|
|
|
|
|