Changeset 1181
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/dll/avl.h
r1029 r1181 86 86 INT load_archivers(VOID); 87 87 BOOL ArcDateTime(CHAR * dt, INT type, CDATE * cdate, CTIME * ctime); 88 MRESULT EXPENTRY SBoxDlgProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2); 88 89 VOID free_arc_type(ARC_TYPE * pat); 89 90 VOID free_archivers(VOID);  - 
      
trunk/dll/collect.c
r1159 r1181 70 70 #define INCL_LONGLONG 71 71 72 #include "fm3dll.h" 72 73 #include "fm3dlg.h" 73 74 #include "fm3str.h" … … 87 88 // LoadDetailsSwitches, OpenEdit, QuickPopup, SayFilter 88 89 // SaySort, SayView, SetCnrCols, SetDetailsSwitches 89 // SetSortChecks, SetViewMenu, disable_menuitem 90 // SetSortChecks, SetViewMenu, disable_menuitem, CheckMenu 91 // CurrentRecord, DrawTargetEmphasis, IsFm2Window 90 92 #include "chklist.h" // CenterOverWindow, DropListProc 91 93 #include "collect.h" … … 102 104 #include "seeall.h" // StartSeeAll 103 105 #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 105 122 #include "select.h" // InvertAll 106 123 #include "strips.h" // bstrip 124 #include "wrappers.h" // xDosFindFirst 107 125 #include "fortify.h" 108 126  - 
      
trunk/dll/draglist.c
r1158 r1181 34 34 #define INCL_LONGLONG 35 35 36 #include "fm3dll.h" 36 37 #include "errutil.h" // Dos_Error... 37 38 #include "draglist.h" 38 39 #include "valid.h" // IsValidDrive 39 #include "fm3dll.h" 40 #include "misc.h" // IsFm2Window 41 #include "select.h" // MarkAll 42 #include "wrappers.h" // xrealloc 40 43 #include "fortify.h" 41 44  - 
      
trunk/dll/draglist.h
r1166 r1181 16 16 #define DRAGLIST_H 17 17 18 HWND DragList(HWND hwnd, HWND hwndObj, CHAR ** list, BOOL moveok); 18 HWND DoFileDrag(HWND hwndCnr, HWND hwndObj, PCNRDRAGINIT pcd, CHAR * arcfile, 19 CHAR * directory, BOOL moveok);HWND DragList(HWND hwnd, HWND hwndObj, CHAR ** list, BOOL moveok); 19 20 HWND DragOne(HWND hwndCnr, HWND hwndObj, CHAR * filename, BOOL moveok); 21 VOID FreeDragInfoData (HWND hwnd, PDRAGINFO pDInfo); 20 22 BOOL PickUp(HWND hwndCnr, HWND hwndObj, PCNRDRAGINIT pcd); 21 23  - 
      
trunk/dll/loadbmp.c
r1158 r1181 29 29 #define INCL_LONGLONG // dircnrs.h 30 30 31 #include "fm3dll.h" 31 32 #include "errutil.h" // Dos_Error... 32 33 #include "loadbmp.h" 33 #include "fm3dll.h" 34 #include "wrappers.h" // xfree 35 #include "dirs.h" // save_dir2 34 36 35 37 static PSZ pszSrcFile = __FILE__;  - 
      
trunk/dll/mainwnd.c
r1158 r1181 84 84 #define INCL_LONGLONG 85 85 86 #include "fm3dll.h" 86 87 #include "fm3dlg.h" 87 88 #include "fm3str.h" … … 101 102 #include "cmdline.h" // CmdLine2DlgProc, save_cmdlines 102 103 #include "common.h" // CommonCreateMainChildren, CommonDriveCmd, CommonMainWndProc 104 // CommonTextButton 103 105 #include "notify.h" // DoNotify, HideNote, ShowNote 104 106 #include "draglist.h" // DragOne … … 109 111 #include "misc.h" // FindDirCnr, FixSwitchList, PaintSTextWindow, 110 112 // SetConditionalCascade, SetMenuCheck, SetSysMenu 111 // SwitchCommand 113 // SwitchCommand, CheckMenu, DrawTargetEmphasis 114 // IsFm2Window 112 115 #include "instant.h" // InstantDlgProc 113 116 #include "killproc.h" // KillDlgProc … … 124 127 #include "cmdline.h" // add_cmdline 125 128 #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 128 142 #include "fortify.h" 129 143  - 
      
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 1 19 void BubbleHelp(HWND hwnd, BOOL other, BOOL data, BOOL above, char *help); 2 20 MRESULT EXPENTRY BubbleProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2); … … 10 28 VOID FillClient(HWND hwndClient, PSWP pswp, PRECTL prectl, BOOL avoidtree); 11 29 HWND FindDirCnrByName(CHAR * directory, BOOL restore); 30 VOID GetNextWindowPos(HWND hwndClient, PSWP pswp, ULONG * ulCntR, 31 ULONG * ulNumMinChildrenR); 12 32 MRESULT EXPENTRY LEDProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2); 13 33 MRESULT EXPENTRY MainWMCommand(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2); … … 18 38 INT SaveDirCnrState(HWND hwndClient, CHAR * name); 19 39 MRESULT EXPENTRY StatusProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2); 40 VOID TileChildren(HWND hwndClient, BOOL absolute); 20 41 MRESULT EXPENTRY ToolBackProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2); 21 42 HWND TopWindow(HWND hwndParent, HWND exclude); 22 43 HWND TopWindowName(HWND hwndParent, HWND exclude, CHAR * ret); 23 44 45 #endif // MAINWND_H  - 
      
trunk/dll/shadow.c
r1158 r1181 29 29 #include "strutil.h" // GetPString 30 30 #include "shadow.h" 31 #include "input.h" // InputDlgProc 31 32 #include "fm3dll.h" 33 #include "valid.h" // IsFile 34 #include "wrappers.h" // xmalloc 32 35 #include "fortify.h" 33 36  - 
      
trunk/dll/worker.c
r1158 r1181 48 48 #define INCL_WINSHELLDATA 49 49 50 #include "fm3dll.h" 50 51 #include "fm3dlg.h" 51 52 #include "fm3str.h" … … 76 77 #include "uudecode.h" // UUD 77 78 #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 80 88 #include "fortify.h" 81 89  - 
      
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 1 19 VOID Action(VOID * args); 2 20 VOID MassAction(VOID * args); 3 21 22 #endif // WORKER_H  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  