tmv               930 ext/com_dotnet/com_variant.c 		struct tm tmv;
tmv               934 ext/com_dotnet/com_variant.c 		memset(&tmv, 0, sizeof(tmv));
tmv               935 ext/com_dotnet/com_variant.c 		tmv.tm_year = systime.wYear - 1900;
tmv               936 ext/com_dotnet/com_variant.c 		tmv.tm_mon = systime.wMonth - 1;
tmv               937 ext/com_dotnet/com_variant.c 		tmv.tm_mday = systime.wDay;
tmv               938 ext/com_dotnet/com_variant.c 		tmv.tm_hour = systime.wHour;
tmv               939 ext/com_dotnet/com_variant.c 		tmv.tm_min = systime.wMinute;
tmv               940 ext/com_dotnet/com_variant.c 		tmv.tm_sec = systime.wSecond;
tmv               941 ext/com_dotnet/com_variant.c 		tmv.tm_isdst = -1;
tmv               944 ext/com_dotnet/com_variant.c 		RETVAL_LONG(mktime(&tmv));
tmv               958 ext/com_dotnet/com_variant.c 	struct tm *tmv;
tmv               974 ext/com_dotnet/com_variant.c 	tmv = localtime(&ttstamp);
tmv               977 ext/com_dotnet/com_variant.c 	systime.wDay = tmv->tm_mday;
tmv               978 ext/com_dotnet/com_variant.c 	systime.wHour = tmv->tm_hour;
tmv               979 ext/com_dotnet/com_variant.c 	systime.wMinute = tmv->tm_min;
tmv               980 ext/com_dotnet/com_variant.c 	systime.wMonth = tmv->tm_mon + 1;
tmv               981 ext/com_dotnet/com_variant.c 	systime.wSecond = tmv->tm_sec;
tmv               982 ext/com_dotnet/com_variant.c 	systime.wYear = tmv->tm_year + 1900;