blob: cce93b4417f7ae606c7eea0fcf0264ba99b91941 [file] [log] [blame]
mark a. foltzc28ca402018-07-19 16:11:32 -07001// Copyright 2018 The Chromium Authors. All rights reserved.
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 PLATFORM_API_TIME_H_
6#define PLATFORM_API_TIME_H_
7
8#include <cstdint>
9
10namespace openscreen {
11namespace platform {
12
13typedef uint64_t Microseconds;
14
15Microseconds GetMonotonicTimeNow();
16
17} // namespace platform
18} // namespace openscreen
19
20#endif