LibreOffice
LibreOffice 4.1 SDK C/C++ API Reference
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
osl
time.h
Go to the documentation of this file.
1
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
/*
3
* This file is part of the LibreOffice project.
4
*
5
* This Source Code Form is subject to the terms of the Mozilla Public
6
* License, v. 2.0. If a copy of the MPL was not distributed with this
7
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
8
*
9
* This file incorporates work covered by the following license notice:
10
*
11
* Licensed to the Apache Software Foundation (ASF) under one or more
12
* contributor license agreements. See the NOTICE file distributed
13
* with this work for additional information regarding copyright
14
* ownership. The ASF licenses this file to you under the Apache
15
* License, Version 2.0 (the "License"); you may not use this file
16
* except in compliance with the License. You may obtain a copy of
17
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
18
*/
19
20
#ifndef _OSL_TIME_H_
21
#define _OSL_TIME_H_
22
23
#include "
sal/config.h
"
24
25
#include "
sal/saldllapi.h
"
26
#include "
sal/types.h
"
27
28
#ifdef __cplusplus
29
extern
"C"
{
30
#endif
31
32
/****************************************************************************/
33
/* TimeValue */
34
/****************************************************************************/
35
36
#ifdef SAL_W32
37
# pragma pack(push, 8)
38
#endif
39
40
/* Time since Jan-01-1970 */
41
42
typedef
struct
{
43
sal_uInt32
Seconds
;
44
sal_uInt32
Nanosec
;
45
}
TimeValue
;
46
47
#if defined(SAL_W32)
48
# pragma pack(pop)
49
#endif
50
51
52
/****************************************************************************/
53
/* oslDateTime */
54
/****************************************************************************/
55
56
typedef
struct
_oslDateTime
57
{
58
/*----------------------------------------------------------------------*/
61
sal_uInt32
NanoSeconds
;
62
65
sal_uInt16
Seconds
;
66
67
/*----------------------------------------------------------------------*/
70
sal_uInt16
Minutes
;
71
72
/*----------------------------------------------------------------------*/
75
sal_uInt16
Hours
;
76
77
/*----------------------------------------------------------------------*/
80
sal_uInt16
Day
;
81
82
/*----------------------------------------------------------------------*/
85
sal_uInt16
DayOfWeek
;
86
87
/*----------------------------------------------------------------------*/
90
sal_uInt16
Month
;
91
92
/*----------------------------------------------------------------------*/
95
sal_Int16
Year
;
96
97
}
oslDateTime
;
98
99
103
SAL_DLLPUBLIC
sal_Bool
SAL_CALL
osl_getSystemTime
(
104
TimeValue
* pTimeVal );
105
106
113
SAL_DLLPUBLIC
sal_Bool
SAL_CALL
osl_getDateTimeFromTimeValue
(
114
const
TimeValue
* pTimeVal,
oslDateTime
* pDateTime );
115
116
123
SAL_DLLPUBLIC
sal_Bool
SAL_CALL
osl_getTimeValueFromDateTime
(
124
const
oslDateTime
* pDateTime,
TimeValue
* pTimeVal );
125
126
133
SAL_DLLPUBLIC
sal_Bool
SAL_CALL
osl_getLocalTimeFromSystemTime
(
134
const
TimeValue
* pSystemTimeVal,
TimeValue
* pLocalTimeVal );
135
136
143
SAL_DLLPUBLIC
sal_Bool
SAL_CALL
osl_getSystemTimeFromLocalTime
(
144
const
TimeValue
* pLocalTimeVal,
TimeValue
* pSystemTimeVal );
145
146
151
SAL_DLLPUBLIC
sal_uInt32 SAL_CALL
osl_getGlobalTimer
(
void
);
152
153
#ifdef __cplusplus
154
}
155
#endif
156
157
#endif
/* _OSL_TIME_H_ */
158
159
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Generated on Thu Aug 29 2013 01:06:40 for LibreOffice by
1.8.4