comparison os2/dw.c @ 1160:924c8087a755

Attempt to use the subversion revision number as the sub version number.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Fri, 16 Sep 2011 06:39:56 +0000
parents f86f556ff29d
children 5d3c1b0686ce
comparison
equal deleted inserted replaced
1159:1e0cd8dafdfb 1160:924c8087a755
9657 } 9657 }
9658 strcpy(env->buildDate, __DATE__); 9658 strcpy(env->buildDate, __DATE__);
9659 strcpy(env->buildTime, __TIME__); 9659 strcpy(env->buildTime, __TIME__);
9660 env->DWMajorVersion = DW_MAJOR_VERSION; 9660 env->DWMajorVersion = DW_MAJOR_VERSION;
9661 env->DWMinorVersion = DW_MINOR_VERSION; 9661 env->DWMinorVersion = DW_MINOR_VERSION;
9662 #ifdef VER_REV
9663 env->DWSubVersion = VER_REV;
9664 #else
9662 env->DWSubVersion = DW_SUB_VERSION; 9665 env->DWSubVersion = DW_SUB_VERSION;
9666 #endif
9663 } 9667 }
9664 9668
9665 /* The next few functions are support functions for the OS/2 folder browser */ 9669 /* The next few functions are support functions for the OS/2 folder browser */
9666 void _populate_directory(HWND tree, HTREEITEM parent, char *path) 9670 void _populate_directory(HWND tree, HTREEITEM parent, char *path)
9667 { 9671 {