comparison dw.h @ 2081:24875681eec5

Added htmlEngine to DWEnv
author mhessling@81767d24-ef19-dc11-ae90-00e081727c95
date Sun, 31 May 2020 05:25:18 +0000
parents 9101babfc421
children f1acc157b2dd
comparison
equal deleted inserted replaced
2080:8f08d4c9d3fc 2081:24875681eec5
268 extern HAB dwhab; 268 extern HAB dwhab;
269 extern HMQ dwhmq; 269 extern HMQ dwhmq;
270 270
271 #include <stdio.h> 271 #include <stdio.h>
272 272
273 /* Mostly safe but slow snprintf() for compilers that don't have it... 273 /* Mostly safe but slow snprintf() for compilers that don't have it...
274 * like VisualAge. So we can write safe code and still use VAC to test. 274 * like VisualAge. So we can write safe code and still use VAC to test.
275 */ 275 */
276 #if defined(__IBMC__) && !defined(snprintf) 276 #if defined(__IBMC__) && !defined(snprintf)
277 #include <stdarg.h> 277 #include <stdarg.h>
278 #include <string.h> 278 #include <string.h>
1336 char osName[30], buildDate[30], buildTime[30]; 1336 char osName[30], buildDate[30], buildTime[30];
1337 /* Versions and builds */ 1337 /* Versions and builds */
1338 short MajorVersion, MinorVersion, MajorBuild, MinorBuild; 1338 short MajorVersion, MinorVersion, MajorBuild, MinorBuild;
1339 /* Dynamic Window version */ 1339 /* Dynamic Window version */
1340 short DWMajorVersion, DWMinorVersion, DWSubVersion; 1340 short DWMajorVersion, DWMinorVersion, DWSubVersion;
1341 /* Which HTML engine is compiled in */
1342 char htmlEngine[30];
1341 } DWEnv; 1343 } DWEnv;
1342 1344
1343 1345
1344 typedef struct _dwexpose { 1346 typedef struct _dwexpose {
1345 int x, y; 1347 int x, y;