blob: d8c1a011b2383c94bd06de121627908bbfbfad63 (
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
|
// 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 winfoundtn = ABI::Windows::Foundation;
namespace wingfx = ABI::Windows::Graphics;
namespace winui = ABI::Windows::UI;
namespace winxml = windata::Xml;
#endif // CHROME_BROWSER_UI_METRO_DRIVER_STDAFX_H_
|