OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 #ifndef SANDBOX_TOOLS_LAUNCHER_STDAFX_H__ | 5 #ifndef SANDBOX_TOOLS_LAUNCHER_STDAFX_H__ |
6 #define SANDBOX_TOOLS_LAUNCHER_STDAFX_H__ | 6 #define SANDBOX_TOOLS_LAUNCHER_STDAFX_H__ |
7 | 7 |
8 #ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later. | 8 #ifndef _WIN32_WINNT |
9 #define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target o
ther versions of Windows. | 9 #define _WIN32_WINNT 0x0501 |
10 #endif | 10 #endif |
11 | 11 |
12 #include <stdio.h> | 12 #include <stdio.h> |
13 #include <tchar.h> | 13 #include <tchar.h> |
14 #include <windows.h> | 14 #include <windows.h> |
15 #define _ATL_NO_EXCEPTIONS | 15 #define _ATL_NO_EXCEPTIONS |
16 #include <atlbase.h> | 16 #include <atlbase.h> |
17 #include <atlsecurity.h> | 17 #include <atlsecurity.h> |
18 #include <conio.h> | 18 #include <conio.h> |
19 | 19 |
20 #endif // SANDBOX_TOOLS_LAUNCHER_STDAFX_H__ | 20 #endif // SANDBOX_TOOLS_LAUNCHER_STDAFX_H__ |
OLD | NEW |