source: trunk/src/3rdparty/patches/sqlite-3.5.6-wince.patch@ 711

Last change on this file since 711 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 548 bytes
  • sqlite3.c

    old new  
    88378837}
    88388838
    88398839/*
     8840** Windows CE does not declare the localtime
     8841** function as it is not defined anywhere.
     8842** Anyway we need the forward-declaration to be
     8843** able to define it later on.
     8844*/
     8845#if defined(_WIN32_WCE) && (_WIN32_WCE >= 0x600)
     8846struct tm *__cdecl localtime(const time_t *t);
     8847#endif
     8848
     8849/*
    88408850** Compute the difference (in days) between localtime and UTC (a.k.a. GMT)
    88418851** for the time value p where p is in UTC.
    88428852*/
Note: See TracBrowser for help on using the repository browser.