STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Macros | Functions
time.inl File Reference

Macros

#define __CRTDECL   __cdecl
 
#define _INC_TIME_INL
 

Functions

static __inline double __CRTDECL difftime (time_t _Time1, time_t _Time2)
 
 _CRT_INSECURE_DEPRECATE (ctime_s) static __inline char *__CRTDECL ctime(const time_t *_Time)
 
 _CRT_INSECURE_DEPRECATE (gmtime_s) static __inline struct tm *__CRTDECL gmtime(const time_t *_Time)
 
 _CRT_INSECURE_DEPRECATE (localtime_s) static __inline struct tm *__CRTDECL localtime(const time_t *_Time)
 
static __inline errno_t __CRTDECL localtime_s (struct tm *_Tm, const time_t *_Time)
 
static __inline time_t __CRTDECL mktime (struct tm *_Tm)
 
static __inline time_t __CRTDECL _mkgmtime (struct tm *_Tm)
 
static __inline time_t __CRTDECL time (time_t *_Time)
 

Macro Definition Documentation

#define __CRTDECL   __cdecl
#define _INC_TIME_INL

Function Documentation

_CRT_INSECURE_DEPRECATE ( ctime_s  ) const
87 {
88 #pragma warning( push )
89 #pragma warning( disable : 4996 )
90  return _ctime64(_Time);
91 #pragma warning( pop )
92 }
_CRT_INSECURE_DEPRECATE ( gmtime_s  ) const
100 {
101 #pragma warning( push )
102 #pragma warning( disable : 4996 )
103  return _gmtime64(_Time);
104 #pragma warning( pop )
105 }
_CRT_INSECURE_DEPRECATE ( localtime_s  ) const
113 {
114 #pragma warning( push )
115 #pragma warning( disable : 4996 )
116  return _localtime64(_Time);
117 #pragma warning( pop )
118 }
static __inline time_t __CRTDECL _mkgmtime ( struct tm _Tm)
static
128 {
129  return _mkgmtime64(_Tm);
130 }
_CRTIMP __time64_t __cdecl _mkgmtime64(_Inout_ struct tm *_Tm)
static __inline double __CRTDECL difftime ( time_t  _Time1,
time_t  _Time2 
)
static
83 {
84  return _difftime64(_Time1,_Time2);
85 }
_Check_return_ _CRTIMP double __cdecl _difftime64(_In_ __time64_t _Time1, _In_ __time64_t _Time2)
static __inline errno_t __CRTDECL localtime_s ( struct tm _Tm,
const time_t _Time 
)
static
120 {
121  return _localtime64_s(_Tm, _Time);
122 }
_CRTIMP errno_t __cdecl _localtime64_s(_Out_ struct tm *_Tm, _In_ const __time64_t *_Time)
static __inline time_t __CRTDECL mktime ( struct tm _Tm)
static
124 {
125  return _mktime64(_Tm);
126 }
_CRTIMP __time64_t __cdecl _mktime64(_Inout_ struct tm *_Tm)
static __inline time_t __CRTDECL time ( time_t _Time)
static
132 {
133  return _time64(_Time);
134 }
_CRTIMP __time64_t __cdecl _time64(_Out_opt_ __time64_t *_Time)