blob: 06cf4e59f48232bdbb22267b67dccc2cb59556c8 [file] [log] [blame]
Avi Drissmand6cdf9b2022-09-15 19:52:531// Copyright 2015 The Chromium Authors
nicholss25b1e322015-09-29 19:00:012// 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
10namespace remoting {
11
12// Returns the host OS name in a standard format for any build target.
13std::string GetHostOperatingSystemName();
14
15// Returns the host OS version in a standard format for any build target.
16std::string GetHostOperatingSystemVersion();
17
18} // namespace remoting
19
20#endif // REMOTING_HOST_HOST_DETAILS_H_