File:  [RetroPC.NET] / xmil / macos9 / timemng.cpp
Revision 1.1: download - view: text, annotated - select for diffs
Sun Aug 8 21:32:14 2004 JST (21 years, 2 months ago) by yui
Branches: MAIN
CVS tags: HEAD
add...

#include	"compiler.h"
#include	"timemng.h"
#include	<time.h>


BOOL timemng_gettime(_SYSTIME *systime) {

	time_t		long_time;
	struct tm 	*now_time;

	time(&long_time);
	now_time = localtime(&long_time);
	if (now_time == NULL) {
		return(FAILURE);
	}
	systime->year = now_time->tm_year + 1900;
	systime->month = now_time->tm_mon + 1;
	systime->week = now_time->tm_wday;
	systime->day = now_time->tm_mday;
	systime->hour = now_time->tm_hour;
	systime->minute = now_time->tm_min;
	systime->second = now_time->tm_sec;
	systime->milli = 0;
	return(SUCCESS);
}


RetroPC.NET-CVS <cvs@retropc.net>