Changeset 1394 for trunk/dll/mainwnd.h


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/mainwnd.h

    r1326 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  05 Sep 08 JBS Ticket 187: Refactor FM3DLL.H
     12  04 Feb 09 SHL Convert args to const to match GetPString mods
    1213
    1314***********************************************************************/
     
    1920#include "colors.h"             // typedef for RGB2
    2021
    21 void BubbleHelp(HWND hwnd, BOOL other, BOOL data, BOOL above, char *help);
     22void BubbleHelp(HWND hwnd, BOOL other, BOOL data, BOOL above, PCSZ help);
    2223MRESULT EXPENTRY BubbleProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
    2324VOID BuildDriveBarButtons(HWND hwndT);
     
    3536MRESULT EXPENTRY MainWMCommand(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
    3637MRESULT EXPENTRY MainWndProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
    37 VOID MakeBubble(HWND hwnd, BOOL above, CHAR * help);
     38VOID MakeBubble(HWND hwnd, BOOL above, PCSZ help);
    3839VOID MakeMainObjWin(VOID * args);
    3940VOID ResizeDrives(HWND hwndT, long xwidth);
    40 INT SaveDirCnrState(HWND hwndClient, CHAR * name);
     41INT SaveDirCnrState(HWND hwndClient, PCSZ name);
    4142MRESULT EXPENTRY StatusProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
    4243VOID TileChildren(HWND hwndClient, BOOL absolute);
     
    8384extern USHORT shiftstate;
    8485
    85 #define STATE_NAME_MAX_BYTES    256
     86#define STATE_NAME_MAX_BYTES 256
    8687
    8788#endif  // MAINWND_H
Note: See TracChangeset for help on using the changeset viewer.