Changeset 1498 for trunk/dll/common.c
- Timestamp:
- Jan 18, 2010, 1:57:01 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/common.c
r1455 r1498 7 7 8 8 Copyright (c) 1993, 1998 M. Kimes 9 Copyright (c) 2001, 20 08Steven H. Levine9 Copyright (c) 2001, 2010 Steven H. Levine 10 10 11 11 13 Aug 05 SHL Renames … … 32 32 inappropriate menu context choices 33 33 14 Sep 09 SHL Blink thread LEDs while threads working 34 17 JAN 10 GKY Changes to get working with Watcom 1.9 Beta (1/16/10). Mostly cast CHAR CONSTANT * as CHAR *. 34 35 35 36 ***********************************************************************/ … … 235 236 break; 236 237 } 237 hwndTmp = WinCreateWindow(hwnd, class, s, attrs, 0, 0, 0, 0, hwnd,238 hwndTmp = WinCreateWindow(hwnd, (CHAR *) class, s, attrs, 0, 0, 0, 0, hwnd, 238 239 HWND_TOP, ids[x], NULL, NULL); 239 240 if (!hwndTmp) … … 437 438 // Left status window 438 439 hwndStatus = WinCreateWindow(hwndFrame, 439 WC_STATUS,440 (CHAR *) WC_STATUS, 440 441 "Status", 441 442 WS_VISIBLE | SS_TEXT | DT_LEFT | … … 458 459 // Right status window 459 460 hwndStatus2 = WinCreateWindow(hwndFrame, 460 WC_STATUS,461 (CHAR *) WC_STATUS, 461 462 "Status2", 462 463 WS_VISIBLE | SS_TEXT | DT_LEFT | … … 479 480 480 481 hwndAttr = WinCreateWindow(hwndFrame, 481 WC_STATUS,482 (CHAR *) WC_STATUS, 482 483 "Attr", 483 484 WS_VISIBLE | SS_TEXT | DT_CENTER | … … 498 499 499 500 hwndDate = WinCreateWindow(hwndFrame, 500 WC_STATUS,501 (CHAR *) WC_STATUS, 501 502 "Date", 502 503 WS_VISIBLE | SS_TEXT | DT_CENTER | … … 517 518 518 519 hwndName = WinCreateWindow(hwndFrame, 519 WC_STATUS,520 (CHAR *) WC_STATUS, 520 521 "Name", 521 522 WS_VISIBLE | SS_TEXT | DT_LEFT | … … 536 537 537 538 hwndTmp = WinCreateWindow(hwndFrame, 538 WC_TOOLBACK,539 (CHAR *) WC_TOOLBACK, 539 540 NullStr, 540 541 WS_VISIBLE | SS_TEXT | DT_CENTER | DT_VCENTER, … … 554 555 555 556 hwndBack = WinCreateWindow(hwndFrame, 556 WC_DRIVEBACK,557 (CHAR *) WC_DRIVEBACK, 557 558 NullStr, 558 559 WS_VISIBLE | SS_TEXT | DT_RIGHT | DT_BOTTOM, … … 575 576 576 577 hwndLED = WinCreateWindow(hwndFrame, 577 WC_LED,578 (CHAR *) WC_LED, 578 579 "#920", // LEDOFF_BMP 579 580 WS_VISIBLE | SS_BITMAP, … … 587 588 588 589 hwndLEDHdr = WinCreateWindow(hwndFrame, 589 WC_LED,590 (CHAR *) WC_LED, 590 591 "0", 591 592 WS_VISIBLE | SS_TEXT | DT_VCENTER | … … 601 602 602 603 hwndAutoview = WinCreateWindow(hwndFrame, 603 WC_AUTOVIEW,604 (CHAR *) WC_AUTOVIEW, 604 605 NullStr, 605 606 WS_VISIBLE | SS_TEXT | DT_LEFT | … … 623 624 hwndAutoMLE = WinCreateWindow(hwndFrame, 624 625 // GetPString(IDS_WCAUTOVIEW), 625 WC_MLE,626 (CHAR *) WC_MLE, 626 627 NullStr, 627 628 WS_VISIBLE | MLS_HSCROLL |
Note:
See TracChangeset
for help on using the changeset viewer.