Merge pull request #951 from ermshiperete/bug-xamarin-2462
[mono.git] / mono / io-layer / timefuncs-private.h
1 /*
2  * timefuncs-private.h:  performance timer and other time private functions
3  *
4  * Author:
5  *      Dick Porter (dick@ximian.com)
6  *
7  * (C) 2002 Ximian, Inc.
8  */
9
10 #ifndef _WAPI_TIMEFUNCS_PRIVATE_H_
11 #define _WAPI_TIMEFUNCS_PRIVATE_H_
12
13 #include <config.h>
14 #include <glib.h>
15 #include <sys/time.h>
16
17 extern void _wapi_time_t_to_filetime (time_t timeval, WapiFileTime *filetime);
18 extern void _wapi_timeval_to_filetime (struct timeval *tv,
19                                        WapiFileTime *filetime);
20 extern void _wapi_guint64_to_filetime (guint64 ticks, WapiFileTime *filetime);
21
22 #endif /* _WAPI_TIMEFUNCS_PRIVATE_H_ */