summaryrefslogtreecommitdiffstats
path: root/win8/metro_driver/stdafx.h
blob: cf4204de62c3544c508e9799b0e84a44c1eb1d9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_UI_METRO_DRIVER_STDAFX_H_
#define CHROME_BROWSER_UI_METRO_DRIVER_STDAFX_H_

#include <wrl\implements.h>
#include <wrl\module.h>
#include <wrl\event.h>
#include <wrl\wrappers\corewrappers.h>

#include <activation.h>
#include <d2d1_1.h>
#include <d3d11_1.h>
#include <roapi.h>
#include <stdio.h>
#include <wincodec.h>
#include <windows.h>

#include <windows.applicationmodel.core.h>
#include <windows.applicationModel.datatransfer.h>
#include <windows.graphics.printing.h>
#include <windows.ui.notifications.h>

namespace mswr =       Microsoft::WRL;
namespace mswrw =      Microsoft::WRL::Wrappers;

namespace winapp =     ABI::Windows::ApplicationModel;
namespace windata =    ABI::Windows::Data;
namespace winxml =     ABI::Windows::Data::Xml;
namespace windevs =    ABI::Windows::Devices;
namespace winfoundtn = ABI::Windows::Foundation;
namespace wingfx =     ABI::Windows::Graphics;
namespace winui =      ABI::Windows::UI;
namespace winsys =     ABI::Windows::System;


#endif  // CHROME_BROWSER_UI_METRO_DRIVER_STDAFX_H_