4 #ifndef INCLUDED_OSL_TIME_H
5 #define INCLUDED_OSL_TIME_H
9 #if defined LIBO_INTERNAL_ONLY
10 #if defined __cplusplus
19 # pragma pack(push, 8)
28 #if defined LIBO_INTERNAL_ONLY && defined __cplusplus
33 constexpr
TimeValue(sal_uInt32 seconds, sal_uInt32 nanoseconds):
36 template<
typename Rep,
typename Period> constexpr
37 TimeValue(std::chrono::duration<Rep, Period>
const & duration):
39 std::chrono::duration_cast<std::chrono::nanoseconds>(
40 duration).count() / 1000000000),
42 std::chrono::duration_cast<std::chrono::nanoseconds>(
43 duration).count() % 1000000000)
169 #endif // INCLUDED_OSL_TIME_H
Time since Jan-01-1970.
Definition: time.h:56
unsigned char sal_Bool
Definition: types.h:18
SAL_DLLPUBLIC sal_Bool osl_getSystemTime(TimeValue *pTimeVal)
Get the current system time as TimeValue.
sal_uInt16 Hours
contains the hour (0-23).
Definition: time.h:91
struct _oslDateTime oslDateTime
sal_uInt32 Seconds
Definition: time.h:57
SAL_DLLPUBLIC sal_Bool osl_getSystemTimeFromLocalTime(const TimeValue *pLocalTimeVal, TimeValue *pSystemTimeVal)
Convert local time to GMT.
sal_uInt32 NanoSeconds
contains the nanoseconds
Definition: time.h:79
sal_uInt16 Minutes
contains the minutes (0-59).
Definition: time.h:87
sal_Int16 Year
is the year.
Definition: time.h:107
sal_uInt32 Nanosec
Definition: time.h:58
sal_uInt16 DayOfWeek
is the day of week (0-6 , 0 : Sunday).
Definition: time.h:99
sal_uInt16 Month
is the month of year (1-12).
Definition: time.h:103
SAL_DLLPUBLIC sal_Bool osl_getDateTimeFromTimeValue(const TimeValue *pTimeVal, oslDateTime *pDateTime)
Get the GMT from a TimeValue and fill a struct oslDateTime.
SAL_DLLPUBLIC sal_uInt32 osl_getGlobalTimer(void)
Get the value of the global timer.
SAL_DLLPUBLIC sal_Bool osl_getTimeValueFromDateTime(const oslDateTime *pDateTime, TimeValue *pTimeVal)
Get the GMT from a oslDateTime and fill a TimeValue.
SAL_DLLPUBLIC sal_Bool osl_getLocalTimeFromSystemTime(const TimeValue *pSystemTimeVal, TimeValue *pLocalTimeVal)
Convert GMT to local time.
sal_uInt16 Day
is the day of month (1-31).
Definition: time.h:95
sal_uInt16 Seconds
contains the seconds (0-59).
Definition: time.h:83
#define SAL_DLLPUBLIC
Definition: saldllapi.h:14