author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Tue, 26 Jan 2010 12:42:25 +0200 | |
changeset 2 | 56cd8111b7f7 |
parent 0 | 1918ee327afb |
child 3 | 41300fa6a67c |
permissions | -rw-r--r-- |
0 | 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 |
struct tm; |
|
9 |
||
10 |
time_t time(time_t* timer); |
|
11 |
time_t mktime(struct tm *t); |
|
12 |
size_t strftime(char * const s, const size_t maxsize, const char * const format, const struct tm * const t); |
|
13 |
struct tm *localtime(const time_t *timer); |
|
14 |
#endif |
|
15 |
||
16 |
#endif |