Changeset 1180
- Timestamp:
- Sep 10, 2008, 11:54:36 PM (17 years ago)
- Location:
- trunk/dll
- Files:
-
- 10 edited
-
avl.c (modified) (2 diffs)
-
colors.c (modified) (1 diff)
-
colors.h (modified) (1 diff)
-
getnames.c (modified) (2 diffs)
-
getnames.h (modified) (1 diff)
-
saveclip.c (modified) (2 diffs)
-
saveclip.h (modified) (1 diff)
-
seeall.c (modified) (2 diffs)
-
select.c (modified) (2 diffs)
-
select.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/avl.c
r1158 r1180 46 46 #define INCL_LONGLONG 47 47 48 #include "fm3dll.h" 48 49 #include "fm3dlg.h" 49 50 #include "fm3str.h" … … 52 53 #include "errutil.h" // Runtime_Error 53 54 #include "avv.h" // ArcReviewDlgProc, rewrite_archiverbb2 54 #include "droplist.h" // FullDrgName 55 #include "fm3dll.h" 55 #include "droplist.h" // DropHelp, FullDrgName 56 #include "misc.h" // DrawTargetEmphasis 57 #include "draglist.h" // FreeDragInfoData 58 #include "chklist.h" // PosOverOkay 59 #include "literal.h" // literal 60 #include "wrappers.h" // xfgets 61 #include "strips.h" // bstrip 62 #include "srchpath.h" // searchpath 63 #include "stristr.h" // stristr 64 #include "delims.h" // to_delim 56 65 #include "fortify.h" 57 66 -
trunk/dll/colors.c
r1157 r1180 22 22 #define INCL_LONGLONG // dircnrs.h 23 23 24 #include "fm3dll.h" 24 25 #include "fm3dlg.h" 25 26 #include "strutil.h" // GetPString 26 27 #include "errutil.h" // Runtime_Error 27 28 #include "colors.h" 28 #include " fm3dll.h"29 #include "misc.h" // PostMsg 29 30 30 31 #pragma data_seg(DATA2) -
trunk/dll/colors.h
r1169 r1180 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(COLORS_H) 16 17 #define COLORS_H 18 1 19 MRESULT EXPENTRY ColorDlgProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2); 2 20 21 #endif // COLORS_H -
trunk/dll/getnames.c
r1158 r1180 21 21 #define INCL_LONGLONG 22 22 23 #include "fm3dll.h" 23 24 #include "fm3dlg.h" 24 25 #include "fm3str.h" … … 27 28 #include "getnames.h" 28 29 #include "walkem.h" // load_udirs, remove_udir 29 #include "fm3dll.h" 30 #include "valid.h" // MakeFullName 31 #include "copyf.h" // unlinkf 32 #include "misc.h" // PaintRecessedWindow 33 #include "wrappers.h" // xDosFindFirst 30 34 31 35 #pragma data_seg(DATA1) -
trunk/dll/getnames.h
r1165 r1180 17 17 18 18 MRESULT EXPENTRY CustomFileDlg(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2); 19 BOOL export_filename(HWND hwnd, CHAR * filename, INT overwrite); 20 BOOL insert_filename(HWND hwnd, CHAR * filename, INT loadit, BOOL newok); 19 21 20 22 -
trunk/dll/saveclip.c
r1158 r1180 35 35 #define INCL_LONGLONG 36 36 37 #include "fm3dll.h" 37 38 #include "fm3dlg.h" 38 39 #include "fm3str.h" 40 #include "saveclip.h" 39 41 #include "makelist.h" // AddToList 40 42 #include "errutil.h" // Dos_Error... 41 43 #include "strutil.h" // GetPString 42 44 #include "pathutil.h" // BldFullPathName 43 #include "saveclip.h"44 45 #include "literal.h" // fixup 45 #include "fm3dll.h" 46 #include "subj.h" // Subject 47 #include "getnames.h" // export_filename 48 #include "copyf.h" // unlinkf 49 #include "wrappers.h" // xfgets 50 #include "strips.h" // bstrip 51 #include "misc.h" // CheckDriveSpaceAvail 52 #include "commafmt.h" // CommaFmtULL 53 #include "valid.h" // IsRoot 54 #include "dirs.h" // save_dir2 46 55 #include "fortify.h" 47 56 … … 50 59 //static VOID ListToClipboard(HWND hwnd, CHAR ** list, ULONG append); 51 60 61 static CHAR **ListFromClipboardHab(HAB hab); 52 62 static BOOL SaveToClipHab(HAB hab, CHAR * text, BOOL append); 53 63 -
trunk/dll/saveclip.h
r1166 r1180 16 16 #define SAVECLIP_H 17 17 18 CHAR **ListFromClipboard(HWND hwnd); 18 19 VOID ListToClipboardHab(HAB hab, CHAR ** list, ULONG append); 19 20 MRESULT EXPENTRY SaveAllListDlgProc(HWND hwnd, ULONG msg, MPARAM mp1, -
trunk/dll/seeall.c
r1158 r1180 52 52 #define INCL_LONGLONG 53 53 54 #include "fm3dll.h" 54 55 #include "fm3dlg.h" 55 56 #include "fm3str.h" … … 76 77 #include "uudecode.h" // UUD 77 78 #include "walkem.h" // WalkCopyDlgProc, WalkMoveDlgProc 78 #include "fm3dll.h" 79 #include "archive.h" // ArchiveDlgProc 80 #include "common.h" // CommonTextProc, DecrThreadUsage, IncrThreadUsage 81 #include "defview.h" // DefaultViewKeys 82 #include "eas.h" // DisplayEAsProc 83 #include "mainwnd.h" // GetNextWindowPos 84 #include "filter.h" // PickMaskDlgProc 85 #include "avl.h" // SBoxDlgProc 86 #include "collect.h" // StartCollector 87 #include "subj.h" // Subject 88 #include "commafmt.h" // commafmt 89 #include "literal.h" // wildcard 90 #include "wrappers.h" // xDosFindNext 79 91 #include "seeall.h" 80 92 #include "misc.h" // SetConditionalCascade 81 93 #include "fonts.h" // SetMLEFont 94 #include "stristr.h" // stristr 95 #include "systemf.h" // runemf2 82 96 #include "fortify.h" 83 97 -
trunk/dll/select.c
r1158 r1180 42 42 #define INCL_LONGLONG 43 43 44 #include "fm3dll.h" 44 45 #include "fm3str.h" 45 46 #include "filldir.h" // RemoveCnrItems … … 49 50 #include "select.h" 50 51 #include "valid.h" // TestCDates 51 #include "fm3dll.h" 52 #include "misc.h" // CurrentRecord 53 #include "findrec.h" // FindCnrRecord 54 #include "notify.h" // Notify 55 #include "literal.h" // wildcard 56 #include "wrappers.h" // xrealloc 57 #include "strips.h" // bstrip 58 #include "stristr.h" // findstring 52 59 #include "fortify.h" 53 60 -
trunk/dll/select.h
r1169 r1180 16 16 #define SELECT_H 17 17 18 VOID Deselect(HWND hwndCnr); 18 19 VOID DeselectAll(HWND hwndCnr, BOOL files, BOOL dirs, CHAR * mask, 19 20 CHAR * text, BOOL arc); … … 21 22 VOID HideAll(HWND hwndCnr); 22 23 VOID InvertAll(HWND hwndCnr); 24 VOID MarkAll(HWND hwndCnr, BOOL quitit, BOOL target, BOOL source); 23 25 VOID RemoveAll(HWND hwndCnr, ULONGLONG * ullTotalBytes, ULONG * totalfiles); 24 26 VOID SelectAll(HWND hwndCnr, BOOL files, BOOL dirs, CHAR * mask, CHAR * text, … … 26 28 VOID SelectList(HWND hwndCnr, BOOL partial, BOOL deselect, BOOL clearfirst, 27 29 PCNRITEM pciParent, CHAR * filename, CHAR ** list); 30 VOID SetMask(CHAR * str, MASK * mask); 28 31 VOID SpecialSelect2(HWND hwndParent, INT action); 32 VOID UnHilite(HWND hwndCnr, BOOL all, CHAR *** list, ULONG ulItemsToUnHilite); 29 33 30 34
Note:
See TracChangeset
for help on using the changeset viewer.
