Avi Drissman | d6cdf9b | 2022-09-15 19:52:53 | [diff] [blame^] | 1 | // Copyright 2015 The Chromium Authors |
nicholss | 25b1e32 | 2015-09-29 19:00:01 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef REMOTING_HOST_HOST_DETAILS_H_ |
| 6 | #define REMOTING_HOST_HOST_DETAILS_H_ |
| 7 | |
| 8 | #include <string> |
| 9 | |
| 10 | namespace remoting { |
| 11 | |
| 12 | // Returns the host OS name in a standard format for any build target. |
| 13 | std::string GetHostOperatingSystemName(); |
| 14 | |
| 15 | // Returns the host OS version in a standard format for any build target. |
| 16 | std::string GetHostOperatingSystemVersion(); |
| 17 | |
| 18 | } // namespace remoting |
| 19 | |
| 20 | #endif // REMOTING_HOST_HOST_DETAILS_H_ |