wince.cpp
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:22k
源码类别:

压缩解压

开发平台:

MultiPlatform

  1. //******************************************************************************
  2. //
  3. // File:        WINCE.CPP
  4. //
  5. // Description: This file implements all the Win32 APIs and C runtime functions
  6. //              that the Info-ZIP code calls, but are not implemented natively
  7. //              on Windows CE.
  8. //
  9. // Copyright:   All the source files for Pocket UnZip, except for components
  10. //              written by the Info-ZIP group, are copyrighted 1997 by Steve P.
  11. //              Miller.  The product "Pocket UnZip" itself is property of the
  12. //              author and cannot be altered in any way without written consent
  13. //              from Steve P. Miller.
  14. //
  15. // Disclaimer:  All project files are provided "as is" with no guarantee of
  16. //              their correctness.  The authors are not liable for any outcome
  17. //              that is the result of using this source.  The source for Pocket
  18. //              UnZip has been placed in the public domain to help provide an
  19. //              understanding of its implementation.  You are hereby granted
  20. //              full permission to use this source in any way you wish, except
  21. //              to alter Pocket UnZip itself.  For comments, suggestions, and
  22. //              bug reports, please write to stevemil@pobox.com.
  23. //
  24. // Functions:   DebugOut
  25. //              chmod
  26. //              close
  27. //              isatty
  28. //              lseek
  29. //              open
  30. //              read
  31. //              setmode
  32. //              unlink
  33. //              fflush
  34. //              fgets
  35. //              fileno
  36. //              fopen
  37. //              fprintf
  38. //              fclose
  39. //              putc
  40. //              sprintf
  41. //              _stricmp
  42. //              _strupr
  43. //              strrchr
  44. //              localtime
  45. //              isupper
  46. //              stat
  47. //              localtime
  48. //              SafeGetTimeZoneInformation
  49. //              GetTransitionTimeT
  50. //              IsDST
  51. //
  52. //
  53. // Date      Name          History
  54. // --------  ------------  -----------------------------------------------------
  55. // 02/01/97  Steve Miller  Created (Version 1.0 using Info-ZIP UnZip 5.30)
  56. //
  57. //******************************************************************************
  58. extern "C" {
  59. #include "punzip.h"
  60. }
  61. #include <tchar.h> // Must be outside of extern "C" block
  62. //******************************************************************************
  63. //***** For all platforms - Our debug output function
  64. //******************************************************************************
  65. #ifdef DEBUG // RETAIL version is __inline and does not generate any code.
  66. void DebugOut(LPCTSTR szFormat, ...) {
  67.    TCHAR szBuffer[512] = TEXT("PUNZIP: ");
  68.    va_list pArgs; 
  69.    va_start(pArgs, szFormat);
  70.    _vsntprintf(szBuffer + 8, countof(szBuffer) - 10, szFormat, pArgs);
  71.    va_end(pArgs);
  72.    TCHAR *psz = szBuffer;
  73.    while (psz = _tcschr(psz, TEXT('n'))) {
  74.       *psz = TEXT('|');
  75.    }
  76.    psz = szBuffer;
  77.    while (psz = _tcschr(psz, TEXT('r'))) {
  78.       *psz = TEXT('|');
  79.    }
  80.    _tcscat(szBuffer, TEXT("rn"));
  81.    OutputDebugString(szBuffer);
  82. }
  83. #endif // DEBUG
  84. //******************************************************************************
  85. //***** Windows CE Native
  86. //******************************************************************************
  87. #if defined(_WIN32_WCE)
  88. //******************************************************************************
  89. //***** Local Function Prototyopes
  90. //******************************************************************************
  91. void SafeGetTimeZoneInformation(TIME_ZONE_INFORMATION *ptzi);
  92. time_t GetTransitionTimeT(TIME_ZONE_INFORMATION *ptzi, int year, BOOL fStartDST);
  93. BOOL IsDST(TIME_ZONE_INFORMATION *ptzi, time_t localTime);
  94. //******************************************************************************
  95. //***** IO.H functions
  96. //******************************************************************************
  97. //-- Called from fileio.c
  98. int __cdecl chmod(const char *filename, int pmode) {
  99.    // Called before unlink() to delete read-only files.
  100.    DWORD dwAttribs = (pmode & _S_IWRITE) ? FILE_ATTRIBUTE_NORMAL : FILE_ATTRIBUTE_READONLY;
  101.    TCHAR szPath[_MAX_PATH];
  102.    mbstowcs(szPath, filename, countof(szPath));
  103.    return (SetFileAttributes(szPath, dwAttribs) ? 0 : -1);
  104. }
  105. //******************************************************************************
  106. //-- Called from process.c
  107. int __cdecl close(int handle) {
  108.    return (CloseHandle((HANDLE)handle) ? 0 : -1);
  109. }
  110. //******************************************************************************
  111. //-- Called from fileio.c
  112. int __cdecl isatty(int handle) {
  113.    // returns TRUE if handle is a terminal, console, printer, or serial port
  114.    // called with 1 (stdout) and 2 (stderr)
  115.    return 0;
  116. }
  117. //******************************************************************************
  118. //-- Called from extract.c, fileio.c, process.c
  119. long __cdecl lseek(int handle, long offset, int origin) {
  120.    // SEEK_SET, SEEK_CUR, SEEK_END are equal to FILE_BEGIN, FILE_CURRENT, FILE_END   
  121.    return SetFilePointer((HANDLE)handle, offset, NULL, origin);
  122. }
  123.                  
  124. //******************************************************************************
  125. //-- Called from fileio.c
  126. int __cdecl open(const char *filename, int oflag, ...) {
  127.    // The Info-Zip code currently only opens existing ZIP files for read using open().
  128.    TCHAR szPath[_MAX_PATH];
  129.    mbstowcs(szPath, filename, countof(szPath));
  130.    HANDLE hFile = CreateFile(szPath, GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE,
  131.                              NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
  132.    return ((hFile == INVALID_HANDLE_VALUE) ? -1 : (int)hFile);
  133. }
  134. //******************************************************************************
  135. //-- Called from extract.c, fileio.c, process.c
  136. int __cdecl read(int handle, void *buffer, unsigned int count) {
  137.    DWORD dwRead = 0;
  138.    return (ReadFile((HANDLE)handle, buffer, count, &dwRead, NULL) ? dwRead : -1);
  139. }
  140. //******************************************************************************
  141. //-- Called from extract.c
  142. int __cdecl setmode(int handle, int mode) {
  143.    //TEXT/BINARY translation - currently always called with O_BINARY.
  144.    return O_BINARY;
  145. }
  146. //******************************************************************************
  147. //-- Called from fileio.c
  148. int __cdecl unlink(const char *filename) {
  149.    // Called to delete files before an extract overwrite.
  150.    TCHAR szPath[_MAX_PATH];
  151.    mbstowcs(szPath, filename, countof(szPath));
  152.    return (DeleteFile(szPath) ? 0: -1);
  153. }
  154. //******************************************************************************
  155. //***** STDIO.H functions
  156. //******************************************************************************
  157. //-- Called from fileio.c
  158. int __cdecl fflush(FILE *stream) {
  159.    return (FlushFileBuffers((HANDLE)stream) ? 0 : EOF);
  160. }
  161. //******************************************************************************
  162. //-- Called from extract.c
  163. char * __cdecl fgets(char *string, int n, FILE *stream) {
  164.    // stream always equals "stdin" and fgets() should never be called.
  165.    DebugOut(TEXT("WARNING: fgets(0x%08X, %d, %08X) called."), string, n, stream);
  166.    return NULL;
  167. }
  168. //******************************************************************************
  169. //-- Called from extract.c
  170. int __cdecl fileno(FILE *stream) {
  171.    return (int)stream;
  172. }
  173. //******************************************************************************
  174. //-- Called from fileio.c
  175. FILE * __cdecl fopen(const char *filename, const char *mode) {
  176.    // fopen() is used to create all extracted files.
  177.    DWORD dwAccess = 0;
  178.    DWORD dwCreate = 0;
  179.    BOOL  fAppend  = FALSE;
  180.    if (strstr(mode, "r+")) {
  181.       dwAccess = GENERIC_READ | GENERIC_WRITE;
  182.       dwCreate = OPEN_EXISTING;
  183.    } else if (strstr(mode, "w+")) {
  184.       dwAccess = GENERIC_READ | GENERIC_WRITE;
  185.       dwCreate = CREATE_ALWAYS;
  186.    } else if (strstr(mode, "a+")) {
  187.       dwAccess = GENERIC_READ | GENERIC_WRITE;
  188.       dwCreate = OPEN_ALWAYS;
  189.       fAppend = TRUE;
  190.    } else if (strstr(mode, "r")) {
  191.       dwAccess = GENERIC_READ;
  192.       dwCreate = OPEN_EXISTING;
  193.    } else if (strstr(mode, "w")) {
  194.       dwAccess = GENERIC_WRITE;
  195.       dwCreate = CREATE_ALWAYS;
  196.    } else if (strstr(mode, "a")) {
  197.       dwAccess = GENERIC_WRITE;
  198.       dwCreate = OPEN_ALWAYS;
  199.       fAppend  = TRUE;
  200.    }
  201.    TCHAR szPath[_MAX_PATH];
  202.    mbstowcs(szPath, filename, countof(szPath));
  203.    HANDLE hFile = CreateFile(szPath, dwAccess, FILE_SHARE_READ | FILE_SHARE_WRITE,
  204.                              NULL, dwCreate, FILE_ATTRIBUTE_NORMAL, NULL);
  205.    if (hFile == INVALID_HANDLE_VALUE) {
  206.       return NULL;
  207.    }
  208.    if (fAppend) {
  209.       SetFilePointer(hFile, 0, NULL, FILE_END);
  210.    }
  211.    return (FILE*)hFile;
  212. }
  213. //******************************************************************************
  214. //-- Called from unshrink.c
  215. int __cdecl fprintf(FILE *stream, const char *format, ...) {
  216.    
  217.    // All standard output/error in Info-ZIP is handled through fprintf()
  218.    if ((stream == stdout) || (stream == stderr)) {
  219.       return 1;
  220.    }
  221.    // "stream" always equals "stderr" or "stdout" - log error if we see otherwise.
  222.    DebugOut(TEXT("WARNING: fprintf(0x%08X, "%S", ...) called."), stream, format);
  223.    return 0;
  224. }
  225. //******************************************************************************
  226. //-- Called from fileio.c
  227. int __cdecl fclose(FILE *stream) {
  228.    return (CloseHandle((HANDLE)stream) ? 0 : EOF);
  229. }
  230. //******************************************************************************
  231. //-- Called from fileio.c
  232. int __cdecl putc(int c, FILE *stream) {
  233.    DebugOut(TEXT("WARNING: putc(%d, 0x%08X) called."), c, stream);
  234.    return 0;
  235. }
  236. //******************************************************************************
  237. //-- Called from intrface.c, extract.c, fileio.c, list.c, process.c
  238. int __cdecl sprintf(char *buffer, const char *format, ...) {
  239.    WCHAR wszBuffer[512], wszFormat[512];
  240.    mbstowcs(wszFormat, format, countof(wszFormat));
  241.    BOOL fPercent = FALSE;
  242.    for (WCHAR *pwsz = wszFormat; *pwsz; pwsz++) {
  243.       if (*pwsz == L'%') {
  244.          fPercent = !fPercent;
  245.       } else if (fPercent && (((*pwsz >= L'a') && (*pwsz <= L'z')) || 
  246.                               ((*pwsz >= L'A') && (*pwsz <= L'Z')))) 
  247.       {
  248.          if (*pwsz == L's') {
  249.             *pwsz = L'S';
  250.          } else if (*pwsz == L'S') {
  251.             *pwsz = L's';
  252.          }
  253.          fPercent = FALSE;
  254.       }
  255.    }
  256.    va_list pArgs; 
  257.    va_start(pArgs, format);
  258.    _vsntprintf(wszBuffer, countof(wszBuffer), wszFormat, pArgs);
  259.    va_end(pArgs);
  260.    wcstombs(buffer, wszBuffer, countof(wszBuffer));
  261.    return 0;
  262. }
  263. //******************************************************************************
  264. //***** STRING.H functions
  265. //******************************************************************************
  266. //-- Called from winmain.c
  267. int __cdecl _stricmp(const char *string1, const char *string2) {
  268.    while (*string1 && ((*string1 | 0x20) == (*string2 | 0x20))) {
  269.       string1++;
  270.       string2++;
  271.    }
  272.    return (*string1 - *string2);
  273. }
  274. //******************************************************************************
  275. //-- Called from winmain.c
  276. char* __cdecl _strupr(char *string) {
  277.    while (*string) {
  278.       if ((*string >= 'a') && (*string <= 'z')) {
  279.          *string -= 'a' - 'A';
  280.       }
  281.       string++;
  282.    }
  283.    return string;
  284. }
  285. //******************************************************************************
  286. //-- Called from _interface.c and winmain.c
  287. char* __cdecl strrchr(const char *string, int c) {
  288.    // Walk to end of string.
  289.    for (char *p = (char*)string; *p; p++) {
  290.    }
  291.    // Walk backwards looking for character.
  292.    for (p--; p >= string; p--) {
  293.       if ((int)*p == c) {
  294.          return p;
  295.       }
  296.    }
  297.    return NULL;
  298. }
  299. //******************************************************************************
  300. //***** CTYPE.H functions
  301. //******************************************************************************
  302. //-- Called from fileio.c
  303. int __cdecl isupper(int c) {
  304.    return ((c >= 'A') && (c <= 'Z'));
  305. }
  306. //******************************************************************************
  307. //***** STAT.H functions
  308. //******************************************************************************
  309. //-- Called fileio.c, process.c, intrface.c
  310. int __cdecl stat(const char *path, struct stat *buffer) {
  311.    // stat() is called on both the ZIP files and extracred files.
  312.    // Clear our stat buffer to be safe.
  313.    ZeroMemory(buffer, sizeof(struct stat));
  314.    // Find the file/direcotry and fill in a WIN32_FIND_DATA structure.
  315.    WIN32_FIND_DATA w32fd;
  316.    ZeroMemory(&w32fd, sizeof(w32fd));
  317.    TCHAR szPath[_MAX_PATH];
  318.    mbstowcs(szPath, path, countof(szPath));
  319.    HANDLE hFind = FindFirstFile(szPath, &w32fd);
  320.    // Bail out now if we could not find the file/directory.
  321.    if (hFind == INVALID_HANDLE_VALUE) {
  322.       return -1;
  323.    }
  324.    // Close the find.
  325.    FindClose(hFind);
  326.    // Mode flags that are currently used: S_IWRITE, S_IFMT, S_IFDIR, S_IEXEC
  327.    if (w32fd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
  328.       buffer->st_mode = _S_IFDIR | _S_IREAD | _S_IEXEC;
  329.    } else {
  330.       buffer->st_mode = _S_IFREG | _S_IREAD;
  331.    }
  332.    if (!(w32fd.dwFileAttributes & FILE_ATTRIBUTE_READONLY)) {
  333.       buffer->st_mode |= _S_IWRITE;
  334.    }
  335.    // Store the file size.
  336.    buffer->st_size  = (_off_t)w32fd.nFileSizeLow;
  337.    // Convert the modified FILETIME to a time_t and store it.
  338.    DWORDLONG dwl = *(DWORDLONG*)&w32fd.ftLastWriteTime;
  339.    buffer->st_mtime = (time_t)((dwl - (DWORDLONG)116444736000000000) / (DWORDLONG)10000000);
  340.    return 0;
  341. }
  342. //******************************************************************************
  343. //***** TIME.H functions
  344. //******************************************************************************
  345. // Evaluates to TRUE if 'y' is a leap year, otherwise FALSE
  346. // #define IS_LEAP_YEAR(y) ((((y) % 4 == 0) && ((y) % 100 != 0)) || ((y) % 400 == 0))
  347. // The macro below is a reduced version of the above macro.  It is valid for
  348. // years between 1901 and 2099 which easily includes all years representable
  349. // by the current implementation of time_t.
  350. #define IS_LEAP_YEAR(y) (((y) & 3) == 0) 
  351. #define BASE_DOW          4                  // 1/1/1970 was a Thursday.
  352. #define SECONDS_IN_A_DAY  (24L * 60L * 60L)  // Number of seconds in one day.
  353. // Month to Year Day conversion array.
  354. int M2YD[] = {
  355.    0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365
  356. };
  357. // Month to Leap Year Day conversion array.
  358. int M2LYD[] = {
  359.    0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366
  360. };
  361. //******************************************************************************
  362. //-- Called from list.c
  363. struct tm * __cdecl localtime(const time_t *timer) {
  364.    // Return value for localtime().  Source currently never references
  365.    // more than one "tm" at a time, so the single return structure is ok.
  366.    static struct tm g_tm; 
  367.    ZeroMemory(&g_tm, sizeof(g_tm));
  368.    // Get our time zone information.
  369.    TIME_ZONE_INFORMATION tzi;
  370.    SafeGetTimeZoneInformation(&tzi);
  371.    // Create a time_t that has been corrected for our time zone.
  372.    time_t localTime = *timer - (tzi.Bias * 60L);
  373.    // Decide if value is in Daylight Savings Time.
  374.    if (g_tm.tm_isdst = (int)IsDST(&tzi, localTime)) {
  375.       localTime -= tzi.DaylightBias * 60L; // usually 60 minutes
  376.    } else {
  377.       localTime -= tzi.StandardBias * 60L; // usually  0 minutes
  378.    }
  379.    // time_t   is a 32-bit value for the seconds since January 1, 1970
  380.    // FILETIME is a 64-bit value for the number of 100-nanosecond intervals
  381.    //          since January 1, 1601
  382.    // Compute the FILETIME for the given local time.
  383.    DWORDLONG dwl = ((DWORDLONG)116444736000000000 + 
  384.                    ((DWORDLONG)localTime * (DWORDLONG)10000000));
  385.    FILETIME ft = *(FILETIME*)&dwl;
  386.    // Convert the FILETIME to a SYSTEMTIME.
  387.    SYSTEMTIME st;
  388.    ZeroMemory(&st, sizeof(st));
  389.    FileTimeToSystemTime(&ft, &st);
  390.    // Finish filling in our "tm" structure.
  391.    g_tm.tm_sec  = (int)st.wSecond;
  392.    g_tm.tm_min  = (int)st.wMinute;
  393.    g_tm.tm_hour = (int)st.wHour;
  394.    g_tm.tm_mday = (int)st.wDay;
  395.    g_tm.tm_mon  = (int)st.wMonth - 1;
  396.    g_tm.tm_year = (int)st.wYear - 1900;
  397.    return &g_tm;
  398. }
  399. //******************************************************************************
  400. void SafeGetTimeZoneInformation(TIME_ZONE_INFORMATION *ptzi) {
  401.    ZeroMemory(ptzi, sizeof(TIME_ZONE_INFORMATION));
  402.    // Ask the OS for the standard/daylight rules for the current time zone.
  403.    if ((GetTimeZoneInformation(ptzi) == 0xFFFFFFFF) ||
  404.        (ptzi->StandardDate.wMonth > 12) || (ptzi->DaylightDate.wMonth > 12))
  405.    {
  406.       // If the OS fails us, we default to the United States' rules.
  407.       ZeroMemory(ptzi, sizeof(TIME_ZONE_INFORMATION));
  408.       ptzi->StandardDate.wMonth =  10;  // October
  409.       ptzi->StandardDate.wDay   =   5;  // Last Sunday (DOW == 0)
  410.       ptzi->StandardDate.wHour  =   2;  // At 2:00 AM
  411.       ptzi->DaylightBias        = -60;  // One hour difference
  412.       ptzi->DaylightDate.wMonth =   4;  // April
  413.       ptzi->DaylightDate.wDay   =   1;  // First Sunday (DOW == 0)
  414.       ptzi->DaylightDate.wHour  =   2;  // At 2:00 AM
  415.    }
  416. }
  417. //******************************************************************************
  418. time_t GetTransitionTimeT(TIME_ZONE_INFORMATION *ptzi, int year, BOOL fStartDST) {
  419.    // We only handle years within the range that time_t supports.  We need to 
  420.    // handle the very end of 1969 since the local time could be up to 13 hours
  421.    // into the previous year.  In this case, our code will actually return a
  422.    // negative value, but it will be compared to another negative value and is
  423.    // handled correctly.  The same goes for the 13 hours past a the max time_t
  424.    // value of 0x7FFFFFFF (in the year 2038).  Again, these values are handled
  425.    // correctly as well.
  426.    if ((year < 1969) || (year > 2038)) {
  427.       return (time_t)0;
  428.    }
  429.    SYSTEMTIME *pst = fStartDST ? &ptzi->DaylightDate : &ptzi->StandardDate;
  430.    // WORD wYear          Year (0000 == 0)
  431.    // WORD wMonth         Month (January == 1)
  432.    // WORD wDayOfWeek     Day of week (Sunday == 0)
  433.    // WORD wDay           Month day (1 - 31)
  434.    // WORD wHour          Hour (0 - 23)
  435.    // WORD wMinute        Minute (0 - 59)
  436.    // WORD wSecond        Second (0 - 59)
  437.    // WORD wMilliseconds  Milliseconds (0 - 999)
  438.    // Compute the number of days since 1/1/1970 to the beginning of this year.
  439.    long daysToYear = ((year - 1970) * 365) // Tally up previous years.
  440.                    + ((year - 1969) >> 2); // Add few extra for the leap years.
  441.    // Compute the number of days since the beginning of this year to the
  442.    // beginning of the month.  We will add to this value to get the actual
  443.    // year day.
  444.    long yearDay = IS_LEAP_YEAR(year) ? M2LYD[pst->wMonth - 1] : 
  445.                                        M2YD [pst->wMonth - 1];
  446.    // Check for day-in-month format.
  447.    if (pst->wYear == 0) {
  448.       // Compute the week day for the first day of the month (Sunday == 0).
  449.       long monthDOW = (daysToYear + yearDay + BASE_DOW) % 7;
  450.       // Add the day offset of the transition day to the year day.
  451.       if (monthDOW < pst->wDayOfWeek) {
  452.          yearDay += (pst->wDayOfWeek - monthDOW) + (pst->wDay - 1) * 7;
  453.       } else {
  454.          yearDay += (pst->wDayOfWeek - monthDOW) + pst->wDay * 7;
  455.       }
  456.       // It is possible that we overshot the month, especially if pst->wDay
  457.       // is 5 (which means the last instance of the day in the month). Check
  458.       // if the year-day has exceeded the month and adjust accordingly.
  459.       if ((pst->wDay == 5) &&
  460.           (yearDay >= (IS_LEAP_YEAR(year) ? M2LYD[pst->wMonth] : 
  461.                                             M2YD [pst->wMonth])))
  462.       {
  463.          yearDay -= 7;
  464.       }
  465.    // If not day-in-month format, then we assume an absolute date.
  466.    } else {
  467.       // Simply add the month day to the current year day.
  468.       yearDay += pst->wDay - 1;
  469.    }
  470.    // Tally up all our days, hours, minutes, and seconds since 1970.
  471.    long seconds = ((SECONDS_IN_A_DAY * (daysToYear + yearDay)) + 
  472.                    (3600L * (long)pst->wHour) + 
  473.                    (60L * (long)pst->wMinute) +
  474.                    (long)pst->wSecond);
  475.    
  476.    // If we are checking for the end of DST, then we need to add the DST bias
  477.    // since we are in DST when we chack this time stamp.
  478.    if (!fStartDST) {
  479.       seconds += ptzi->DaylightBias * 60L;
  480.    }
  481.    return (time_t)seconds;
  482. }
  483. //******************************************************************************
  484. BOOL IsDST(TIME_ZONE_INFORMATION *ptzi, time_t localTime) {
  485.    // If either of the months is 0, then this usually means that the time zone
  486.    // does not use DST.  Unfortunately, Windows CE since it has a bug where it
  487.    // never really fills in these fields with the correct values, so it appears
  488.    // like we are never in DST.  This is supposed to be fixed in future releases,
  489.    // so hopefully this code will get some use then.
  490.    if ((ptzi->StandardDate.wMonth == 0) || (ptzi->DaylightDate.wMonth == 0)) {
  491.       return FALSE;
  492.    }
  493.    // time_t   is a 32-bit value for the seconds since January 1, 1970
  494.    // FILETIME is a 64-bit value for the number of 100-nanosecond intervals
  495.    //          since January 1, 1601
  496.    // Compute the FILETIME for the given local time.
  497.    DWORDLONG dwl = ((DWORDLONG)116444736000000000 + 
  498.                    ((DWORDLONG)localTime * (DWORDLONG)10000000));
  499.    FILETIME ft = *(FILETIME*)&dwl;
  500.    // Convert the FILETIME to a SYSTEMTIME.
  501.    SYSTEMTIME st;
  502.    ZeroMemory(&st, sizeof(st));
  503.    FileTimeToSystemTime(&ft, &st);
  504.    // Get our start and end daylisght savings times. 
  505.    time_t timeStart = GetTransitionTimeT(ptzi, (int)st.wYear, TRUE);
  506.    time_t timeEnd   = GetTransitionTimeT(ptzi, (int)st.wYear, FALSE);
  507.    // Check what hemisphere we are in.
  508.    if (timeStart < timeEnd) {
  509.       // Northern hemisphere ordering.
  510.       return ((localTime >= timeStart) && (localTime < timeEnd));
  511.    } else if (timeStart > timeEnd) {
  512.       // Southern hemisphere ordering.
  513.       return ((localTime < timeEnd) || (localTime >= timeStart));
  514.    }
  515.    // If timeStart equals timeEnd then this time zone does not support DST.
  516.    return FALSE;
  517. }
  518. #endif // _WIN32_WCE