File:  [RetroPC.NET] / np2 / x11 / timemng.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Fri Oct 17 02:59:41 2003 JST (22 years ago) by yui
Branches: mie
CVS tags: start, rel_036, VER_0_71, VER_0_70
Neko Project II

#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) {
		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);
	}
	else {
		return(FAILURE);
	}
}


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