summaryrefslogtreecommitdiffstats
path: root/wince/sys/timeb.c
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-04 13:48:20 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-04 13:48:20 +0000
commitbffac137b66af3f0686df363fb01ff2a563d1298 (patch)
tree602e5c4e6a866436cf999e994d4590df9c89fb2a /wince/sys/timeb.c
parentd4b5b5fe4f718ee5bf78ba48adfca12d75069da1 (diff)
downloadruby-bffac137b66af3f0686df363fb01ff2a563d1298.tar.gz
ruby-bffac137b66af3f0686df363fb01ff2a563d1298.tar.xz
ruby-bffac137b66af3f0686df363fb01ff2a563d1298.zip
* dln.c: Ruby no longer supports Windows CE.
* eval.c: ditto. * include/ruby/defines.h: ditto. * include/ruby/win32.h: ditto. * ruby.c: ditto. * strftime.c: ditto. * win32/Makefile.sub: ditto. * win32/win32.c: ditto. * ext/tk/extconf.rb: ditto. * lib/fileutils.rb: ditto. * test/fileutils/test_fileutils.rb: ditto. * wince/*: removed. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19681 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'wince/sys/timeb.c')
-rw-r--r--wince/sys/timeb.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/wince/sys/timeb.c b/wince/sys/timeb.c
deleted file mode 100644
index 838ae0798..000000000
--- a/wince/sys/timeb.c
+++ /dev/null
@@ -1,25 +0,0 @@
-/***************************************************************
- timeb.c
-***************************************************************/
-
-#include <windows.h>
-#include <time.h>
-#include <sys/timeb.h>
-
-
-int ftime(struct timeb *tp)
-{
- SYSTEMTIME s;
- FILETIME f;
-
- GetLocalTime(&s);
- SystemTimeToFileTime( &s, &f );
-
- tp->dstflag = 0;
- tp->timezone = _timezone/60;
- tp->time = wce_FILETIME2time_t(&f);
- tp->millitm = s.wMilliseconds;
-
- return 0;
-}
-