More WinCE mods

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21902 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2003-07-11 21:50:07 +00:00
parent 086b3a5b02
commit 4676948b68
69 changed files with 953 additions and 195 deletions

View File

@@ -54,6 +54,10 @@
#include "wx/process.h"
#include "wx/txtstrm.h"
#if defined(__WXWINCE__) && wxUSE_DATETIME
#include "wx/datetime.h"
#endif
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
@@ -79,15 +83,11 @@
#include "wx/msw/wince/time.h"
#endif
#ifndef __MWERKS__
#if !defined(__MWERKS__) && !defined(__WXWINCE__)
#include <sys/types.h>
#include <sys/stat.h>
#endif
#ifdef __SALFORDC__
#include <clib.h>
#endif
#ifdef __WXMSW__
#include "wx/msw/private.h"
#endif
@@ -263,10 +263,19 @@ wxString wxDecToHex(int dec)
// Return the current date/time
wxString wxNow()
{
#ifdef __WXWINCE__
#if wxUSE_DATETIME
wxDateTime now = wxDateTime::Now();
return now.Format();
#else
return wxEmptyString;
#endif
#else
time_t now = time((time_t *) NULL);
char *date = ctime(&now);
date[24] = '\0';
return wxString::FromAscii(date);
#endif
}
const wxChar *wxGetInstallPrefix()