Changeset 1178
- Timestamp:
- Sep 10, 2008, 11:53:43 PM (17 years ago)
- Location:
- trunk/dll
- Files:
-
- 10 edited
-
attribs.h (modified) (1 diff)
-
cmdline.h (modified) (2 diffs)
-
datamin.c (modified) (2 diffs)
-
fsopen.c (modified) (1 diff)
-
instant.c (modified) (2 diffs)
-
internal/mkstr.c (modified) (2 diffs)
-
objwin.c (modified) (1 diff)
-
strips.h (modified) (1 diff)
-
sysinfo.c (modified) (1 diff)
-
treecnr.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/attribs.h
r1165 r1178 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(ATTRIBS_H) 16 17 #define ATTRIBS_H 18 1 19 MRESULT EXPENTRY AttrListDlgProc(HWND hwnd, ULONG msg, MPARAM mp1, 2 20 MPARAM mp2); 3 21 22 #endif // ATTRIBS_H -
trunk/dll/cmdline.h
r1168 r1178 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(CMDLINE_H) 16 17 #define CMDLINE_H 18 1 19 MRESULT EXPENTRY CmdLine2DlgProc(HWND hwnd, ULONG msg, MPARAM mp1, 2 20 MPARAM mp2); … … 5 23 VOID save_cmdlines(BOOL big); 6 24 25 #endif // CMDLINE_H -
trunk/dll/datamin.c
r1156 r1178 35 35 #define INCL_LONGLONG 36 36 37 #include "fm3dll.h" 37 38 #include "fm3dlg.h" 38 39 #include "fm3str.h" … … 45 46 #include "sysinfo.h" // SysInfoDlgProc 46 47 #include "mainwnd.h" // TopWindowName 47 #include "fm3dll.h" 48 #include "commafmt.h" // CommaFmtUL 49 #include "common.h" // OpenDirCnr 50 #include "shadow.h" // OpenObject 51 #include "chklist.h" // PopupMenu 52 #include "presparm.h" // SetPresParams 53 #include "undel.h" // UndeleteDlgProc 54 #include "misc.h" // GetCmdSpec 55 #include "wrappers.h" // xDosFindFirst 56 #include "systemf.h" // runemf2 48 57 #include "fortify.h" 49 58 -
trunk/dll/fsopen.c
r907 r1178 28 28 29 29 #include "fm3dll.h" 30 #include "stristr.h" // stristr 30 31 31 32 #pragma alloc_text(FSOPEN,_fsopen) -
trunk/dll/instant.c
r1156 r1178 23 23 #define INCL_LONGLONG // dircnrs.h 24 24 25 #include "fm3dll.h" 25 26 #include "fm3dlg.h" 26 27 #include "fm3str.h" … … 29 30 #include "strutil.h" // GetPString 30 31 #include "instant.h" 31 #include "fm3dll.h" 32 #include "misc.h" // GetCmdSpec 33 #include "systemf.h" // runemf2 34 #include "strips.h" // bstrip 32 35 33 36 #pragma data_seg(DATA1) -
trunk/dll/internal/mkstr.c
r551 r1178 22 22 #include <ctype.h> 23 23 24 #define INCL_LONGLONG 25 #include <os2.h> 26 27 #include "..\fm3dll.h" 28 #include "..\fm3str.h" 24 29 #include "..\version.h" 25 #include "..\fm3str.h" 30 31 static int literal(char *fsource); 26 32 27 33 /* … … 67 73 #define DEC "0123456789" 68 74 69 int literal(char *fsource)75 int literal(char *fsource) 70 76 { 71 77 -
trunk/dll/objwin.c
r1173 r1178 27 27 #include "errutil.h" // Win_Error 28 28 #include "fortify.h" 29 #ifdef FORTIFY30 29 #include "misc.h" // GetTidForThread 31 #endif32 30 #include "collect.h" // CollectorObjWndProc 33 31 #include "objwin.h" -
trunk/dll/strips.h
r1168 r1178 20 20 VOID remove_first_occurence_of_character(char *pszRemoveChar, char *pszSrc); 21 21 22 /* strips.c */ 23 void strip_lead_char(char *pszStripChars, char *pszSrc); 24 void strip_trail_char(char *pszStripChars, char *pszSrc); 25 #define lstrip(s) strip_lead_char(" \t",(s)) 26 #define rstrip(s) strip_trail_char(" \t",(s)) 27 #define stripcr(s) strip_trail_char("\r\n",(s)) 28 // Strip leading and trailing white 29 #define bstrip(s) (strip_lead_char(" \t",(s)),strip_trail_char(" \t",(s))) 30 // Strip leading and trailing white and trail cr/nl 31 #define bstripcr(s) (strip_lead_char(" \t",(s)),strip_trail_char("\r\n \t",(s))) 32 33 22 34 23 35 #endif // STRIPS_H -
trunk/dll/sysinfo.c
r1156 r1178 25 25 #define INCL_LONGLONG 26 26 27 #include "fm3dll.h" 28 #include "fm3dlg.h" 27 29 #include "pathutil.h" // BldFullPathName 28 #include "fm3dlg.h"29 30 #include "sysinfo.h" 30 #include "fm3dll.h" 31 #include "copyf.h" // unlinkf 32 #include "wrappers.h" // xfgets 33 #include "systemf.h" // runemf2 34 #include "misc.h" // PostMsg 35 #include "strips.h" // bstrip 31 36 32 37 #pragma data_seg(DATA1) -
trunk/dll/treecnr.c
r1157 r1178 59 59 #define INCL_LONGLONG 60 60 61 #include "fm3dll.h" 61 62 #include "fm3dlg.h" 62 63 #include "fm3str.h" … … 69 70 #include "command.h" // RunCommand 70 71 #include "worker.h" // Action, MassAction 71 #include "mainwnd.h" // BubbleHelp, FindDirCnrByName 72 #include "mainwnd.h" // BubbleHelp, FindDirCnrByName, GetNextWindowPos 72 73 #include "misc.h" // CnrDirectEdit, EmphasizeButton, FindDirCnr 73 74 // FindDirCnr, FixSwitchList, OpenEdit, QuickPopup 74 // SetSortChecks, SwitchCommand 75 // SetSortChecks, SwitchCommand, CheckMenu 76 // CurrentRecord, IsFm2Window 75 77 #include "common.h" // CommonCnrProc, CommonDriveCmd, CommonFrameWndProc 76 #include "valid.h" // DriveFlagsOne, IsValidDrive 78 // CommonTextProc 79 #include "valid.h" // CheckDrive, DriveFlagsOne, IsValidDrive 77 80 #include "chklist.h" // DropListProc 78 81 #include "select.h" // ExpandAll 79 #include "findrec.h" // Find ParentRecord, ShowCnrRecord82 #include "findrec.h" // FindCnrRecord, FindParentRecord, ShowCnrRecord 80 83 #include "flesh.h" // Flesh, UnFlesh 81 84 #include "notify.h" // HideNote … … 87 90 #include "update.h" // SelectDriveIcon, UpdateCnrList, UpdateCnrRecord 88 91 #include "sortcnr.h" // SortTreeCnr 89 #include "fm3dll.h" 90 92 #include "droplist.h" // AcceptOneDrop, CheckPmDrgLimit, DropHelp, GetOneDrop 93 #include "presparm.h" // CopyPresParams 94 #include "defview.h" // DefaultViewKeys 95 #include "draglist.h" // DoFileDrag 96 #include "filter.h" // Filter 97 #include "shadow.h" // OpenObject 98 #include "mkdir.h" // PMMkDir 99 #include "collect.h" // StartCollector 100 #include "viewer.h" // StartMLEEditor 101 #include "newview.h" // StartViewer 102 #include "walkem.h" // WalkAllDlgProc 103 #include "commafmt.h" // CommaFmtULL 104 #include "wrappers.h" // xDosFindFirst 105 #include "systemf.h" // runemf2 106 #include "dirs.h" // save_dir2 91 107 #include "fortify.h" 92 108
Note:
See TracChangeset
for help on using the changeset viewer.
