WPILibC++  unspecified
timestamp.h
1 /*----------------------------------------------------------------------------*/
2 /* Copyright (c) FIRST 2015. All Rights Reserved. */
3 /* Open Source Software - may be modified and shared by FRC teams. The code */
4 /* must be accompanied by the FIRST BSD license file in the root directory of */
5 /* the project. */
6 /*----------------------------------------------------------------------------*/
7 #ifndef WPIUTIL_SUPPORT_TIMESTAMP_H_
8 #define WPIUTIL_SUPPORT_TIMESTAMP_H_
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 unsigned long long WPI_Now(void);
15 
16 #ifdef __cplusplus
17 }
18 #endif
19 
20 #ifdef __cplusplus
21 namespace wpi {
22 
23 unsigned long long Now();
24 
25 } // namespace wpi
26 #endif
27 
28 #endif // WPIUTIL_SUPPORT_TIMESTAMP_H_
Definition: SocketError.cpp:18
unsigned long long Now()
Returns monotonic current time in 100 ns increments.
Definition: ntcore_cpp.cpp:715