- Timestamp:
- Sep 10, 2008, 11:56:13 PM (17 years ago)
- Location:
- trunk/dll
- Files:
-
- 10 edited
-
arccnrs.c (modified) (3 diffs)
-
autoview.h (modified) (2 diffs)
-
codepage.c (modified) (2 diffs)
-
dirs.h (modified) (1 diff)
-
droplist.h (modified) (1 diff)
-
info.c (modified) (2 diffs)
-
literal.c (modified) (1 diff)
-
stristr.c (modified) (4 diffs)
-
uudecode.c (modified) (2 diffs)
-
viewinf.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/arccnrs.c
r1160 r1183 79 79 #define INCL_LONGLONG 80 80 81 #include "fm3dll.h" 81 82 #include "arccnrs.h" // StartArcCnr 82 83 #include "fm3dlg.h" … … 92 93 #include "chklist.h" // CenterOverWindow, CheckListProc 93 94 #include "common.h" // CommonCreateTextChildren, CommonFrameWndProc, CommonTextPaint 94 #include "draglist.h" // DragOne 95 // CommonTextButton 96 #include "draglist.h" // DoFileDrag, DragOne 95 97 #include "valid.h" // GetDesktopName, TestCDates 96 #include "mainwnd.h" // MakeBubble, TopWindowName98 #include "mainwnd.h" // GetNextWindowPos, MakeBubble, TopWindowName 97 99 #include "objwin.h" // MakeObjWin 98 100 #include "shadow.h" // MakeShadows … … 100 102 #include "printer.h" // PrintListThread 101 103 #include "srchpath.h" // RunFM2Util 102 #include "misc.h" // SayFilter, SaySort 104 #include "misc.h" // Broadcast, CheckMenu, CurrentRecord, SayFilter, SaySort 105 // DrawTargetEmphasis, IsFm2Window 103 106 #include "select.h" // SelectAll, SelectList 104 107 #include "findrec.h" // ShowCnrRecord 105 108 #include "walkem.h" // WalkExtractDlgProc 106 #include "fm3dll.h" 109 #include "droplist.h" // AcceptOneDrop, CheckPmDrgLimit, DropHelp, GetOneDrop 110 #include "archive.h" // ArchiveDlgProc 111 #include "common.h" // CommonTextProc 112 #include "presparm.h" // CopyPresParams 113 #include "defview.h" // DefaultViewKeys 114 #include "systemf.h" // ExecOnList 115 #include "filter.h" // PickMaskDlgProc 116 #include "avl.h" // SBoxDlgProc 117 #include "mkdir.h" // SetDir 118 #include "collect.h" // StartCollector 119 #include "viewer.h" // StartMLEEditor 120 #include "newview.h" // StartViewer 121 #include "commafmt.h" // commafmt 122 #include "copyf.h" // unlinkf 123 #include "literal.h" // wildcard 124 #include "wrappers.h" // xrealloc 107 125 #include "misc.h" // AdjustCnrColVis, QuickPopup, SetSortChecks, SwitchCommand 108 126 #include "select.h" // DeselectAll, InvertAll 127 #include "strips.h" // bstrip 128 #include "dirs.h" // save_dir2 109 129 #include "fortify.h" 110 130 -
trunk/dll/autoview.h
r1166 r1183 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(AUTOVIEW_H) 16 17 #define AUTOVIEW_H 18 1 19 MRESULT EXPENTRY AttrListDlgProc(HWND hwnd, ULONG msg, MPARAM mp1, 2 20 MPARAM mp2); … … 5 23 ULONG startval, BOOL longlead); 6 24 25 #endif // AUTOVIEW_H -
trunk/dll/codepage.c
r1159 r1183 21 21 #define INCL_LONGLONG // dircnrs.h 22 22 23 #include "fm3dll.h" 23 24 #include "fm3dlg.h" 24 25 #include "fm3str.h" … … 26 27 #include "errutil.h" // Runtime_Error 27 28 #include "codepage.h" 28 #include " fm3dll.h"29 #include "misc.h" // PostMsg 29 30 30 31 #pragma data_seg(DATA1) -
trunk/dll/dirs.h
r1166 r1183 16 16 #define DIRS_H 17 17 18 APIRET save_dir(CHAR * curdir); 19 APIRET save_dir2(CHAR * curdir); 18 20 APIRET switch_to(CHAR * s); 19 21 -
trunk/dll/droplist.h
r1169 r1183 16 16 #define DROPLIST_H 17 17 18 BOOL AcceptOneDrop(HWND hwnd, MPARAM mp1, MPARAM mp2); 19 BOOL CheckPmDrgLimit(PDRAGINFO pDInfo); 20 LISTINFO *DoFileDrop(HWND hwndCnr, CHAR * directory, BOOL arcfilesok, 21 MPARAM mp1, MPARAM mp2); 22 void DropHelp(MPARAM mp1, MPARAM mp2, HWND hwnd, char *text); 18 23 BOOL FullDrgName(PDRAGITEM pDItem, CHAR * buffer, ULONG buflen); 24 BOOL GetOneDrop(HWND hwnd, MPARAM mp1, MPARAM mp2, char *buffer, ULONG buflen); 19 25 20 26 -
trunk/dll/info.c
r1160 r1183 38 38 #define INCL_LONGLONG 39 39 40 #include "fm3dll.h" 40 41 #include "fm3dlg.h" 41 42 #include "fm3str.h" … … 46 47 #include "defview.h" // DefaultView 47 48 #include "info.h" 48 #include "valid.h" // IsBinary49 #include "valid.h" // CheckDrive, IsBinary 49 50 #include "seticon.h" // SetIconDlgProc 50 #include "fm3dll.h" 51 #include "droplist.h" // AcceptOneDrop, DropHelp, GetOneDrop 52 #include "eas.h" // DisplayEAsProc 53 #include "misc.h" // DrawTargetEmphasis 54 #include "notify.h" // Notify 55 #include "shadow.h" // OpenObject 56 #include "chklist.h" // PopupMenu 57 #include "presparm.h" // SetPresParams 58 #include "strips.h" // bstrip 59 #include "commafmt.h" // CommaFmtULL 60 #include "wrappers.h" // xDosFindFirst 51 61 #include "fortify.h" 52 62 -
trunk/dll/literal.c
r1160 r1183 29 29 #define INCL_LONGLONG // dircnrs.h 30 30 31 #include "fm3dll.h" 31 32 #include "errutil.h" // Dos_Error... 32 33 #include "literal.h" 33 #include " fm3dll.h"34 #include "wrappers.h" // xmalloc 34 35 #include "fortify.h" 35 36 -
trunk/dll/stristr.c
r907 r1183 18 18 #include <os2.h> 19 19 20 CHAR *stristr(register CHAR * t, CHAR * s) 20 #include "stristr.h" 21 22 // static CHAR *strnistr(register CHAR * t, CHAR * s, LONG len); 23 24 CHAR *stristr(const register CHAR * t, const CHAR * s) 25 // CHAR *stristr(register CHAR * t, CHAR * s) 21 26 { 22 27 /* case-insensitive strstr() */ 23 28 24 register CHAR *t1, *s1;29 const register CHAR *t1, *s1; 25 30 26 31 while (*t) { … … 36 41 } 37 42 if (!*s1) 38 return t1;43 return (CHAR *)t1; 39 44 t = t1 + 1; 40 45 } … … 42 47 } 43 48 49 #if 0 // JBS 44 50 CHAR *strnistr(register CHAR * t, CHAR * s, LONG len) 45 51 { … … 66 72 return NULL; 67 73 } 74 #endif 68 75 69 76 CHAR *strnstr(register CHAR * t, CHAR * s, LONG len) -
trunk/dll/uudecode.c
r1160 r1183 27 27 #define INCL_LONGLONG // dircnrs.h 28 28 29 #include "fm3dll.h" 29 30 #include "fm3dlg.h" 30 31 #include "fm3str.h" … … 34 35 #include "defview.h" 35 36 #include "uudecode.h" 36 #include "fm3dll.h" 37 #include "getnames.h" // export_filename 38 #include "valid.h" // IsFile 39 #include "misc.h" // PaintRecessedWindow 40 #include "wrappers.h" // xfgets 37 41 38 42 static PSZ pszSrcFile = __FILE__; -
trunk/dll/viewinf.c
r1159 r1183 29 29 #define INCL_LONGLONG 30 30 31 #include "fm3dll.h" 31 32 #include "fm3dlg.h" 32 33 #include "fm3str.h" … … 34 35 #include "strutil.h" // GetPString 35 36 #include "pathutil.h" // BldFullPathName 36 #include " fm3dll.h"37 #include "common.h" // DecrThreadUsage, IncrThreadUsage 37 38 #include "viewinf.h" 38 39 #include "misc.h" // ViewHelp 40 #include "strips.h" // bstrip 41 #include "systemf.h" // runemf2 42 #include "dirs.h" // save_dir2 43 #include "wrappers.h" // xfopen 39 44 #include "fortify.h" 40 45
Note:
See TracChangeset
for help on using the changeset viewer.
