summaryrefslogtreecommitdiffstats
path: root/win8/metro_driver/stdafx.h
blob: 1ce382c77b60a6f0d7dfe7dbf855ab2716300b6e (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
40
// 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 WIN8_METRO_DRIVER_STDAFX_H_
#define WIN8_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.storage.pickers.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;
namespace winstorage = ABI::Windows::Storage;

#endif  // WIN8_METRO_DRIVER_STDAFX_H_