| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/win/win_util.h" | 5 #include "base/win/win_util.h" |
| 6 | 6 |
| 7 #include <aclapi.h> | 7 #include <aclapi.h> |
| 8 #include <shellapi.h> | 8 #include <shellapi.h> |
| 9 #include <shlobj.h> | 9 #include <shlobj.h> |
| 10 #include <shobjidl.h> // Must be before propkey. | 10 #include <shobjidl.h> // Must be before propkey. |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 | 332 |
| 333 #ifdef _MSC_VER | 333 #ifdef _MSC_VER |
| 334 | 334 |
| 335 // There are optimizer bugs in VS2012 pre-Update 1. | 335 // There are optimizer bugs in VS2012 pre-Update 1. |
| 336 #if _MSC_VER == 1700 && _MSC_FULL_VER < 170051106 | 336 #if _MSC_VER == 1700 && _MSC_FULL_VER < 170051106 |
| 337 #error Must install Update 1 to Visual Studio 2012. | 337 #error Must install Update 1 to Visual Studio 2012. |
| 338 #endif | 338 #endif |
| 339 | 339 |
| 340 #endif // _MSC_VER | 340 #endif // _MSC_VER |
| 341 | 341 |
| 342 #ifndef COPY_FILE_COPY_SYMLINK | |
| 343 #error You must install the Windows 2008 or Vista Software Development Kit and \ | |
| 344 set it as your default include path to build this library. You can grab it by \ | |
| 345 searching for "download windows sdk 2008" in your favorite web search engine. \ | |
| 346 Also make sure you register the SDK with Visual Studio, by selecting \ | |
| 347 "Integrate Windows SDK with Visual Studio 2005" from the Windows SDK \ | |
| 348 menu (see Start - All Programs - Microsoft Windows SDK - \ | |
| 349 Visual Studio Registration). | |
| 350 #endif | |
| OLD | NEW |