| 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 #ifndef BASE_WIN_WINDOWS_VERSION_H_ | 5 #ifndef BASE_WIN_WINDOWS_VERSION_H_ |
| 6 #define BASE_WIN_WINDOWS_VERSION_H_ | 6 #define BASE_WIN_WINDOWS_VERSION_H_ |
| 7 #pragma once | |
| 8 | 7 |
| 9 #include "base/base_export.h" | 8 #include "base/base_export.h" |
| 10 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 11 | 10 |
| 12 typedef void* HANDLE; | 11 typedef void* HANDLE; |
| 13 | 12 |
| 14 namespace base { | 13 namespace base { |
| 15 namespace win { | 14 namespace win { |
| 16 | 15 |
| 17 // The running version of Windows. This is declared outside OSInfo for | 16 // The running version of Windows. This is declared outside OSInfo for |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 }; | 96 }; |
| 98 | 97 |
| 99 // Because this is by far the most commonly-requested value from the above | 98 // Because this is by far the most commonly-requested value from the above |
| 100 // singleton, we add a global-scope accessor here as syntactic sugar. | 99 // singleton, we add a global-scope accessor here as syntactic sugar. |
| 101 BASE_EXPORT Version GetVersion(); | 100 BASE_EXPORT Version GetVersion(); |
| 102 | 101 |
| 103 } // namespace win | 102 } // namespace win |
| 104 } // namespace base | 103 } // namespace base |
| 105 | 104 |
| 106 #endif // BASE_WIN_WINDOWS_VERSION_H_ | 105 #endif // BASE_WIN_WINDOWS_VERSION_H_ |
| OLD | NEW |