mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
009f78761d
types.h, utime.c, utime.h * wince/dll.mak : object file name changed. * wince/io.c : add empty dup2(). * wince/io.h : add dup2 definition. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3146 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
25 lines
457 B
C
25 lines
457 B
C
/***************************************************************
|
|
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;
|
|
}
|
|
|