systime           964 ext/com_dotnet/com_variant.c 		SYSTEMTIME systime;
systime           967 ext/com_dotnet/com_variant.c 		VariantTimeToSystemTime(V_DATE(&vres), &systime);
systime           970 ext/com_dotnet/com_variant.c 		tmv.tm_year = systime.wYear - 1900;
systime           971 ext/com_dotnet/com_variant.c 		tmv.tm_mon = systime.wMonth - 1;
systime           972 ext/com_dotnet/com_variant.c 		tmv.tm_mday = systime.wDay;
systime           973 ext/com_dotnet/com_variant.c 		tmv.tm_hour = systime.wHour;
systime           974 ext/com_dotnet/com_variant.c 		tmv.tm_min = systime.wMinute;
systime           975 ext/com_dotnet/com_variant.c 		tmv.tm_sec = systime.wSecond;
systime           992 ext/com_dotnet/com_variant.c 	SYSTEMTIME systime;
systime          1010 ext/com_dotnet/com_variant.c 	memset(&systime, 0, sizeof(systime));
systime          1012 ext/com_dotnet/com_variant.c 	systime.wDay = tmv->tm_mday;
systime          1013 ext/com_dotnet/com_variant.c 	systime.wHour = tmv->tm_hour;
systime          1014 ext/com_dotnet/com_variant.c 	systime.wMinute = tmv->tm_min;
systime          1015 ext/com_dotnet/com_variant.c 	systime.wMonth = tmv->tm_mon + 1;
systime          1016 ext/com_dotnet/com_variant.c 	systime.wSecond = tmv->tm_sec;
systime          1017 ext/com_dotnet/com_variant.c 	systime.wYear = tmv->tm_year + 1900;
systime          1020 ext/com_dotnet/com_variant.c 	SystemTimeToVariantTime(&systime, &V_DATE(&res));