tmv               965 ext/com_dotnet/com_variant.c 		struct tm tmv;
tmv               969 ext/com_dotnet/com_variant.c 		memset(&tmv, 0, sizeof(tmv));
tmv               970 ext/com_dotnet/com_variant.c 		tmv.tm_year = systime.wYear - 1900;
tmv               971 ext/com_dotnet/com_variant.c 		tmv.tm_mon = systime.wMonth - 1;
tmv               972 ext/com_dotnet/com_variant.c 		tmv.tm_mday = systime.wDay;
tmv               973 ext/com_dotnet/com_variant.c 		tmv.tm_hour = systime.wHour;
tmv               974 ext/com_dotnet/com_variant.c 		tmv.tm_min = systime.wMinute;
tmv               975 ext/com_dotnet/com_variant.c 		tmv.tm_sec = systime.wSecond;
tmv               976 ext/com_dotnet/com_variant.c 		tmv.tm_isdst = -1;
tmv               979 ext/com_dotnet/com_variant.c 		RETVAL_LONG(mktime(&tmv));
tmv               993 ext/com_dotnet/com_variant.c 	struct tm *tmv;
tmv              1009 ext/com_dotnet/com_variant.c 	tmv = localtime(&ttstamp);
tmv              1012 ext/com_dotnet/com_variant.c 	systime.wDay = tmv->tm_mday;
tmv              1013 ext/com_dotnet/com_variant.c 	systime.wHour = tmv->tm_hour;
tmv              1014 ext/com_dotnet/com_variant.c 	systime.wMinute = tmv->tm_min;
tmv              1015 ext/com_dotnet/com_variant.c 	systime.wMonth = tmv->tm_mon + 1;
tmv              1016 ext/com_dotnet/com_variant.c 	systime.wSecond = tmv->tm_sec;
tmv              1017 ext/com_dotnet/com_variant.c 	systime.wYear = tmv->tm_year + 1900;