systime           929 ext/com_dotnet/com_variant.c 		SYSTEMTIME systime;
systime           932 ext/com_dotnet/com_variant.c 		VariantTimeToSystemTime(V_DATE(&vres), &systime);
systime           935 ext/com_dotnet/com_variant.c 		tmv.tm_year = systime.wYear - 1900;
systime           936 ext/com_dotnet/com_variant.c 		tmv.tm_mon = systime.wMonth - 1;
systime           937 ext/com_dotnet/com_variant.c 		tmv.tm_mday = systime.wDay;
systime           938 ext/com_dotnet/com_variant.c 		tmv.tm_hour = systime.wHour;
systime           939 ext/com_dotnet/com_variant.c 		tmv.tm_min = systime.wMinute;
systime           940 ext/com_dotnet/com_variant.c 		tmv.tm_sec = systime.wSecond;
systime           957 ext/com_dotnet/com_variant.c 	SYSTEMTIME systime;
systime           975 ext/com_dotnet/com_variant.c 	memset(&systime, 0, sizeof(systime));
systime           977 ext/com_dotnet/com_variant.c 	systime.wDay = tmv->tm_mday;
systime           978 ext/com_dotnet/com_variant.c 	systime.wHour = tmv->tm_hour;
systime           979 ext/com_dotnet/com_variant.c 	systime.wMinute = tmv->tm_min;
systime           980 ext/com_dotnet/com_variant.c 	systime.wMonth = tmv->tm_mon + 1;
systime           981 ext/com_dotnet/com_variant.c 	systime.wSecond = tmv->tm_sec;
systime           982 ext/com_dotnet/com_variant.c 	systime.wYear = tmv->tm_year + 1900;
systime           985 ext/com_dotnet/com_variant.c 	SystemTimeToVariantTime(&systime, &V_DATE(&res));