src/3rdparty/ce-compat/ce_time.h
author Eckhart Koeppen <eckhart.koppen@nokia.com>
Thu, 08 Apr 2010 14:19:33 +0300
branchRCL_3
changeset 8 3f74d0d4af4c
parent 3 41300fa6a67c
permissions -rw-r--r--
qt:70947f0f93d948bc89b3b43d00da758a51f1ef84

#ifndef __CE_TIME_H__
#define __CE_TIME_H__

#if defined(_WIN32_WCE) && _WIN32_WCE >= 0x600
/* we need to prototype the time functions for Windows CE >= 6.0 */
#include <crtdefs.h>

#ifdef __cplusplus
extern "C" {
#endif

struct tm;

time_t time(time_t* timer);
time_t mktime(struct tm *t);
size_t strftime(char * const s, const size_t maxsize, const char * const format, const struct tm * const t);
struct tm *localtime(const time_t *timer);

#ifdef __cplusplus
}   /* closing brace for extern "C" */
#endif

#endif /* defined(_WIN32_WCE) && _WIN32_WCE >= 0x600 */

#endif /* !defined(__CE_TIME_H__) */