source: trunk/src/3rdparty/ce-compat/ce_time.h@ 890

Last change on this file since 890 was 561, checked in by Dmitry A. Kuminov, 15 years ago

trunk: Merged in qt 4.6.1 sources.

  • Property svn:eol-style set to native
File size: 604 bytes
Line 
1#ifndef __CE_TIME_H__
2#define __CE_TIME_H__
3
4#if defined(_WIN32_WCE) && _WIN32_WCE >= 0x600
5/* we need to prototype the time functions for Windows CE >= 6.0 */
6#include <crtdefs.h>
7
8#ifdef __cplusplus
9extern "C" {
10#endif
11
12struct tm;
13
14time_t time(time_t* timer);
15time_t mktime(struct tm *t);
16size_t strftime(char * const s, const size_t maxsize, const char * const format, const struct tm * const t);
17struct tm *localtime(const time_t *timer);
18
19#ifdef __cplusplus
20} /* closing brace for extern "C" */
21#endif
22
23#endif /* defined(_WIN32_WCE) && _WIN32_WCE >= 0x600 */
24
25#endif /* !defined(__CE_TIME_H__) */
Note: See TracBrowser for help on using the repository browser.