Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygentimeb.h
Go to the documentation of this file.
00001 00006 #ifndef _INC_TIMEB 00007 #define _INC_TIMEB 00008 00009 #include <crtdefs.h> 00010 00011 #ifndef _WIN32 00012 #error Only Win32 target is supported! 00013 #endif 00014 00015 #pragma pack(push,_CRT_PACKING) 00016 00017 #ifdef __cplusplus 00018 extern "C" { 00019 #endif 00020 00021 #ifndef _TIMEB_DEFINED 00022 #define _TIMEB_DEFINED 00023 00024 struct _timeb { 00025 time_t time; 00026 unsigned short millitm; 00027 short timezone; 00028 short dstflag; 00029 }; 00030 00031 struct __timeb32 { 00032 __time32_t time; 00033 unsigned short millitm; 00034 short timezone; 00035 short dstflag; 00036 }; 00037 00038 #ifndef NO_OLDNAMES 00039 struct timeb { 00040 time_t time; 00041 unsigned short millitm; 00042 short timezone; 00043 short dstflag; 00044 }; 00045 #endif 00046 00047 #if _INTEGRAL_MAX_BITS >= 64 00048 struct __timeb64 { 00049 __time64_t time; 00050 unsigned short millitm; 00051 short timezone; 00052 short dstflag; 00053 }; 00054 #endif 00055 00056 #endif /* !_TIMEB_DEFINED */ 00057 00058 _CRTIMP void __cdecl _ftime(struct _timeb *_Time); 00059 _CRT_INSECURE_DEPRECATE(_ftime32_s) _CRTIMP void __cdecl _ftime32(struct __timeb32 *_Time); 00060 _CRTIMP errno_t __cdecl _ftime32_s(struct __timeb32 *_Time); 00061 #if _INTEGRAL_MAX_BITS >= 64 00062 _CRT_INSECURE_DEPRECATE(_ftime64_s) _CRTIMP void __cdecl _ftime64(struct __timeb64 *_Time); 00063 _CRTIMP errno_t __cdecl _ftime64_s(struct __timeb64 *_Time); 00064 #endif 00065 00066 #ifndef NO_OLDNAMES 00067 #if !defined (RC_INVOKED) 00068 __CRT_INLINE void __cdecl ftime(struct timeb *_Tmb) { 00069 _ftime((struct _timeb *)_Tmb); 00070 } 00071 #endif 00072 #endif 00073 00074 #ifdef __cplusplus 00075 } 00076 #endif 00077 00078 #pragma pack(pop) 00079 00080 #include <sec_api/sys/timeb_s.h> 00081 00082 #endif /* !_INC_TIMEB */ Generated on Sat May 26 2012 04:28:29 for ReactOS by
1.7.6.1
|