ReactOS 0.4.16-dev-937-g7afcd2a
difftime.cpp File Reference
Include dependency graph for difftime.cpp:

Go to the source code of this file.

Functions

template<typename TimeType >
static double __cdecl common_difftime (TimeType const b, TimeType const a) throw ()
 
double __cdecl _difftime32 (__time32_t const b, __time32_t const a)
 
double __cdecl _difftime64 (__time64_t const b, __time64_t const a)
 

Function Documentation

◆ _difftime32()

double __cdecl _difftime32 ( __time32_t const  b,
__time32_t const  a 
)

Definition at line 24 of file difftime.cpp.

25{
26 return common_difftime(b, a);
27}
static double __cdecl common_difftime(TimeType const b, TimeType const a)
Definition: difftime.cpp:17
GLboolean GLboolean GLboolean b
Definition: glext.h:6204
GLboolean GLboolean GLboolean GLboolean a
Definition: glext.h:6204

◆ _difftime64()

double __cdecl _difftime64 ( __time64_t const  b,
__time64_t const  a 
)

Definition at line 29 of file difftime.cpp.

30{
31 return common_difftime(b, a);
32}

◆ common_difftime()

template<typename TimeType >
static double __cdecl common_difftime ( TimeType const  b,
TimeType const  a 
)
throw (
)
static

Definition at line 17 of file difftime.cpp.

18{
19 _VALIDATE_RETURN_NOEXC(a >= 0 && b >= 0, EINVAL, 0);
20
21 return static_cast<double>(b - a);
22}
#define EINVAL
Definition: acclib.h:90
#define _VALIDATE_RETURN_NOEXC(expr, errorcode, retexpr)
#define a
Definition: ke_i.h:78

Referenced by _difftime32(), and _difftime64().