Changeset 1498 for trunk/dll/objwin.c


Ignore:
Timestamp:
Jan 18, 2010, 1:57:01 AM (16 years ago)
Author:
Gregg Young
Message:

Changes to get FM2 to compile with the latest watcom 1.9 beta (mostly type casts of CHAR CONSTANT * to CHAR *). Changes to get the environment settings working everywhere again (broken by the change that moved commands to the INI); Added an environment size variable (set to 2048 which was the largest I found hard coded). Still need to find everywhere the environment size is set and use this variable.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/objwin.c

    r1395 r1498  
    77
    88  Copyright (c) 1993-98 M. Kimes
    9   Copyright (c) 2006, 2008 Steven H.Levine
     9  Copyright (c) 2006, 2010 Steven H.Levine
    1010
    1111  26 Jul 06 SHL Check more run time errors
     
    1515  08 Jul 08 SHL Correct Fortify_LeaveScope usage and avoid spurious reports
    1616  07 Feb 09 GKY Eliminate Win_Error2 by moving function names to PCSZs used in Win_Error
     17  17 JAN 10 GKY Changes to get working with Watcom 1.9 Beta (1/16/10). Mostly cast CHAR CONSTANT * as CHAR *.
    1718
    1819***********************************************************************/
     
    7374      DosError(FERR_DISABLEHARDERR);
    7475      WinRegisterClass(hab2,
    75                        WC_OBJECTWINDOW,
     76                       (CHAR *) WC_OBJECTWINDOW,
    7677                       ObjectWndProc, 0, sizeof(PVOID));
    7778      ObjectHwnd = WinCreateWindow(HWND_OBJECT,
    78                                    WC_OBJECTWINDOW,
     79                                   (CHAR *) WC_OBJECTWINDOW,
    7980                                   (PSZ) NULL,
    8081                                   0,
Note: See TracChangeset for help on using the changeset viewer.