diff options
Diffstat (limited to 'win8/metro_driver/stdafx.h')
-rw-r--r-- | win8/metro_driver/stdafx.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/win8/metro_driver/stdafx.h b/win8/metro_driver/stdafx.h new file mode 100644 index 0000000..d8c1a01 --- /dev/null +++ b/win8/metro_driver/stdafx.h @@ -0,0 +1,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_ |