diff win/dw.c @ 15:81833f25b1aa

Added new Dynamic Windows build information to the DWEnv struct. It reports version numbers and build time/date.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Thu, 12 Jul 2001 20:31:26 +0000
parents 176cee043f1b
children f26eced21a30
line wrap: on
line diff
--- a/win/dw.c	Wed Jul 11 21:57:56 2001 +0000
+++ b/win/dw.c	Thu Jul 12 20:31:26 2001 +0000
@@ -5329,6 +5329,12 @@
 		strcpy(env->osName, "Windows 95/98/ME");
 		env->MajorBuild =  0;
 	}
+
+	strcpy(env->buildDate, __DATE__);
+	strcpy(env->buildTime, __TIME__);
+	env->DWMajorVersion = DW_MAJOR_VERSION;
+	env->DWMinorVersion = DW_MINOR_VERSION;
+	env->DWSubVersion = DW_SUB_VERSION;
 }
 
 /*