Changeset 1394 for trunk/dll/seeall.c


Ignore:
Timestamp:
Feb 5, 2009, 5:17:25 AM (17 years ago)
Author:
Steven Levine
Message:

Ticket 340: Convert GetPString to use STRINGTABLE.

Drop fm3dll.str and mkstr.exe from makefiles and wpi builders

Convert many functions to expect PCSZ arguments.
Correct walk, compare and dirsizes dialog setups to ignore saved dialog size
Drop copyright.c logic from makefile

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/seeall.c

    r1391 r1394  
    77
    88  Copyright (c) 1993-98 M. Kimes
    9   Copyright (c) 2001, 2008 Steven H. Levine
     9  Copyright (c) 2001, 2009 Steven H. Levine
    1010
    1111  16 Oct 02 SHL Handle large partitions
     
    612612      case IDM_RENAME:
    613613        {
    614           CHAR newname[CCHMAXPATH], *moving, *move, *moved;
     614          CHAR newname[CCHMAXPATH];
     615          PCSZ moving, move, moved;
    615616          APIRET rc;
    616617          INT type;
     
    734735                             message);
    735736            if (fRealIdle)
    736               priority_idle();
    737             if (fVerify && (driveflags[toupper(*list[x]) - 'A'] & DRIVE_WRITEVERIFYOFF ||
    738                             driveflags[toupper(*newname) - 'A'] & DRIVE_WRITEVERIFYOFF)) {
    739               DosSetVerify(FALSE);
    740               fResetVerify = TRUE;
    741             }
     737              priority_idle();
     738            if (fVerify && (driveflags[toupper(*list[x]) - 'A'] & DRIVE_WRITEVERIFYOFF ||
     739                            driveflags[toupper(*newname) - 'A'] & DRIVE_WRITEVERIFYOFF)) {
     740              DosSetVerify(FALSE);
     741              fResetVerify = TRUE;
     742            }
    742743            if (plen) {
    743744              /* make directory/ies, if required */
     
    753754              }
    754755            }
    755             rc = docopyf(type, list[x], "%s", newname);
    756             if (fResetVerify) {
    757               DosSetVerify(fVerify);
    758               fResetVerify = FALSE;
    759             }
     756            rc = docopyf(type, list[x], "%s", newname);
     757            if (fResetVerify) {
     758              DosSetVerify(fVerify);
     759              fResetVerify = FALSE;
     760            }
    760761            priority_normal();
    761762            if (rc) {
     
    33373338        pAD->hwndPopup =
    33383339          WinLoadMenu(HWND_DESKTOP, FM3ModHandle, SEEALL_POPUP);
    3339         if (pAD->hwndPopup) {
    3340           //fixme to allow user to change presparams 1-10-09 GKY
     3340        if (pAD->hwndPopup) {
     3341          //fixme to allow user to change presparams 1-10-09 GKY
    33413342          WinSetPresParam(pAD->hwndPopup, PP_FONTNAMESIZE,
    33423343                          strlen(FNT_8HELVETICA) + 1,
Note: See TracChangeset for help on using the changeset viewer.