~ubuntu-branches/ubuntu/trusty/qtscript-opensource-src/trusty-proposed

« back to all changes in this revision

Viewing changes to src/3rdparty/ce-compat/ce_time.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2014-02-10 13:21:09 UTC
  • mfrom: (1.1.3) (0.1.6 saucy-proposed)
  • Revision ID: package-import@ubuntu.com-20140210132109-d9pc9a4hupbvs61u
Tags: 5.1.1+dfsg-2ubuntu1~really5.0.2+dfsg-3ubuntu1
* Revert to 5.0.2 as Qt 5.1 is not in Ubuntu yet
* Add aarch64.patch Add support for AArch64 to JavaScriptCore

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
9
 
extern "C" {
10
 
#endif
11
 
 
12
 
struct tm;
13
 
 
14
 
time_t time(time_t* timer);
15
 
time_t mktime(struct tm *t);
16
 
size_t strftime(char * const s, const size_t maxsize, const char * const format, const struct tm * const t);
17
 
struct 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__) */