Changeset 1181


Ignore:
Timestamp:
Sep 10, 2008, 11:55:02 PM (17 years ago)
Author:
John Small
Message:

Ticket 187: Draft 2: Move remaining function declarations

Location:
trunk/dll
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/avl.h

    r1029 r1181  
    8686INT load_archivers(VOID);
    8787BOOL ArcDateTime(CHAR * dt, INT type, CDATE * cdate, CTIME * ctime);
     88MRESULT EXPENTRY SBoxDlgProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
    8889VOID free_arc_type(ARC_TYPE * pat);
    8990VOID free_archivers(VOID);
  • trunk/dll/collect.c

    r1159 r1181  
    7070#define INCL_LONGLONG
    7171
     72#include "fm3dll.h"
    7273#include "fm3dlg.h"
    7374#include "fm3str.h"
     
    8788                                        // LoadDetailsSwitches, OpenEdit, QuickPopup, SayFilter
    8889                                        // SaySort, SayView, SetCnrCols, SetDetailsSwitches
    89                                         // SetSortChecks, SetViewMenu, disable_menuitem
     90                                        // SetSortChecks, SetViewMenu, disable_menuitem, CheckMenu
     91                                        // CurrentRecord, DrawTargetEmphasis, IsFm2Window
    9092#include "chklist.h"                    // CenterOverWindow, DropListProc
    9193#include "collect.h"
     
    102104#include "seeall.h"                     // StartSeeAll
    103105#include "update.h"                     // UpdateCnrList, UpdateCnrRecord
    104 #include "fm3dll.h"
     106#include "droplist.h"                   // CheckPmDrgLimit
     107#include "common.h"                     // CommonTextButton, CommonTextProc
     108#include "presparm.h"                   // CopyPresParams
     109#include "defview.h"                    // DefaultViewKeys
     110#include "draglist.h"                   // DoFileDrag, FreeDragInfoData
     111#include "systemf.h"                    // ExecOnList
     112#include "filter.h"                     // Filter
     113#include "findrec.h"                    // FindCnrRecord
     114#include "shadow.h"                     // OpenObject
     115#include "mkdir.h"                      // PMMkDir
     116#include "valid.h"                      // ParentIsDesktop
     117#include "viewer.h"                     // StartMLEEditor
     118#include "newview.h"                    // StartViewer
     119#include "undel.h"                      // UndeleteDlgProc
     120#include "commafmt.h"                   // commafmt
     121#include "getnames.h"                   // insert_filename
    105122#include "select.h"                     // InvertAll
    106 
     123#include "strips.h"                     // bstrip
     124#include "wrappers.h"                   // xDosFindFirst
    107125#include "fortify.h"
    108126
  • trunk/dll/draglist.c

    r1158 r1181  
    3434#define INCL_LONGLONG
    3535
     36#include "fm3dll.h"
    3637#include "errutil.h"                    // Dos_Error...
    3738#include "draglist.h"
    3839#include "valid.h"                      // IsValidDrive
    39 #include "fm3dll.h"
     40#include "misc.h"                       // IsFm2Window
     41#include "select.h"                     // MarkAll
     42#include "wrappers.h"                   // xrealloc
    4043#include "fortify.h"
    4144
  • trunk/dll/draglist.h

    r1166 r1181  
    1616#define DRAGLIST_H
    1717
    18 HWND DragList(HWND hwnd, HWND hwndObj, CHAR ** list, BOOL moveok);
     18HWND DoFileDrag(HWND hwndCnr, HWND hwndObj, PCNRDRAGINIT pcd, CHAR * arcfile,
     19                CHAR * directory, BOOL moveok);HWND DragList(HWND hwnd, HWND hwndObj, CHAR ** list, BOOL moveok);
    1920HWND DragOne(HWND hwndCnr, HWND hwndObj, CHAR * filename, BOOL moveok);
     21VOID FreeDragInfoData (HWND hwnd, PDRAGINFO pDInfo);
    2022BOOL PickUp(HWND hwndCnr, HWND hwndObj, PCNRDRAGINIT pcd);
    2123
  • trunk/dll/loadbmp.c

    r1158 r1181  
    2929#define INCL_LONGLONG                   // dircnrs.h
    3030
     31#include "fm3dll.h"
    3132#include "errutil.h"                    // Dos_Error...
    3233#include "loadbmp.h"
    33 #include "fm3dll.h"
     34#include "wrappers.h"                   // xfree
     35#include "dirs.h"                       // save_dir2
    3436
    3537static PSZ pszSrcFile = __FILE__;
  • trunk/dll/mainwnd.c

    r1158 r1181  
    8484#define INCL_LONGLONG
    8585
     86#include "fm3dll.h"
    8687#include "fm3dlg.h"
    8788#include "fm3str.h"
     
    101102#include "cmdline.h"                    // CmdLine2DlgProc, save_cmdlines
    102103#include "common.h"                     // CommonCreateMainChildren, CommonDriveCmd, CommonMainWndProc
     104                                        // CommonTextButton
    103105#include "notify.h"                     // DoNotify, HideNote, ShowNote
    104106#include "draglist.h"                   // DragOne
     
    109111#include "misc.h"                       // FindDirCnr, FixSwitchList, PaintSTextWindow,
    110112                                        // SetConditionalCascade, SetMenuCheck, SetSysMenu
    111                                         // SwitchCommand
     113                                        // SwitchCommand, CheckMenu, DrawTargetEmphasis
     114                                        // IsFm2Window
    112115#include "instant.h"                    // InstantDlgProc
    113116#include "killproc.h"                   // KillDlgProc
     
    124127#include "cmdline.h"                    // add_cmdline
    125128#include "assoc.h"                      // free_associations
    126 #include "fm3dll.h"
    127 
     129#include "droplist.h"                   // AcceptOneDrop, CheckPmDrgLimit, DropHelp, GetOneDrop
     130#include "common.h"                     // CommonTextProc
     131#include "presparm.h"                   // CopyPresParams
     132#include "systemf.h"                    // ExecOnList
     133#include "shadow.h"                     // OpenObject
     134#include "mkdir.h"                      // PMMkDir
     135#include "collect.h"                    // StartCollector
     136#include "select.h"                     // UnHilite
     137#include "strips.h"                     // bstrip
     138#include "commafmt.h"                   // CommaFmtULL
     139#include "valid.h"                      // IsFullName
     140#include "dirs.h"                       // save_dir2
     141#include "wrappers.h"                   // xfree
    128142#include "fortify.h"
    129143
  • trunk/dll/mainwnd.h

    r1166 r1181  
     1
     2/***********************************************************************
     3
     4  $Id: $
     5
     6  <<description here>>
     7
     8  Copyright (c) 1993-98 M. Kimes
     9  Copyright (c) 2001, 2008 Steven H. Levine
     10
     11  05 Sep 08 JBS Ticket 187: Refactor FM3DLL.H
     12
     13***********************************************************************/
     14
     15#if !defined(MAINWND_H)
     16
     17#define MAINWND_H
     18
    119void BubbleHelp(HWND hwnd, BOOL other, BOOL data, BOOL above, char *help);
    220MRESULT EXPENTRY BubbleProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
     
    1028VOID FillClient(HWND hwndClient, PSWP pswp, PRECTL prectl, BOOL avoidtree);
    1129HWND FindDirCnrByName(CHAR * directory, BOOL restore);
     30VOID GetNextWindowPos(HWND hwndClient, PSWP pswp, ULONG * ulCntR,
     31                      ULONG * ulNumMinChildrenR);
    1232MRESULT EXPENTRY LEDProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
    1333MRESULT EXPENTRY MainWMCommand(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
     
    1838INT SaveDirCnrState(HWND hwndClient, CHAR * name);
    1939MRESULT EXPENTRY StatusProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
     40VOID TileChildren(HWND hwndClient, BOOL absolute);
    2041MRESULT EXPENTRY ToolBackProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
    2142HWND TopWindow(HWND hwndParent, HWND exclude);
    2243HWND TopWindowName(HWND hwndParent, HWND exclude, CHAR * ret);
    2344
     45#endif  // MAINWND_H
  • trunk/dll/shadow.c

    r1158 r1181  
    2929#include "strutil.h"                    // GetPString
    3030#include "shadow.h"
     31#include "input.h"                      // InputDlgProc
    3132#include "fm3dll.h"
     33#include "valid.h"                      // IsFile
     34#include "wrappers.h"                   // xmalloc
    3235#include "fortify.h"
    3336
  • trunk/dll/worker.c

    r1158 r1181  
    4848#define INCL_WINSHELLDATA
    4949
     50#include "fm3dll.h"
    5051#include "fm3dlg.h"
    5152#include "fm3str.h"
     
    7677#include "uudecode.h"                   // UUD
    7778#include "walkem.h"                     // WalkCopyDlgProc, WalkDlgProc, WalkMoveDlgProc
    78 #include "fm3dll.h"
    79 
     79#include "archive.h"                    // ArchiveDlgProc
     80#include "misc.h"                       // Broadcast
     81#include "common.h"                     // DecrThreadUsage, IncrThreadUsage
     82#include "eas.h"                        // DisplayEAsProc
     83#include "systemf.h"                    // ExecOnList
     84#include "avl.h"                        // SBoxDlgProc
     85#include "subj.h"                       // Subject
     86#include "stristr.h"                    // stristr
     87#include "wrappers.h"                   // xfopen
    8088#include "fortify.h"
    8189
  • trunk/dll/worker.h

    r1169 r1181  
     1
     2/***********************************************************************
     3
     4  $Id: $
     5
     6  <<description here>>
     7
     8  Copyright (c) 1993-98 M. Kimes
     9  Copyright (c) 2001, 2008 Steven H. Levine
     10
     11  05 Sep 08 JBS Ticket 187: Refactor FM3DLL.H
     12
     13***********************************************************************/
     14
     15#if !defined(WORKER_H)
     16
     17#define WORKER_H
     18
    119VOID Action(VOID * args);
    220VOID MassAction(VOID * args);
    321
     22#endif  // WORKER_H
Note: See TracChangeset for help on using the changeset viewer.