Changeset 1177
- Timestamp:
- Sep 10, 2008, 11:53:13 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/attribs.c
r1156 r1177 20 20 #define INCL_WIN 21 21 22 #include "fm3dll.h" 22 23 #include "fm3dlg.h" 23 24 #include "fm3str.h" … … 27 28 #include "defview.h" // QuickView 28 29 #include "attribs.h" 29 #include "fm3dll.h" 30 #include "misc.h" // PaintRecessedWindow 31 #include "wrappers.h" // xDosSetPathInfo 30 32 31 33 static PSZ pszSrcFile = __FILE__; -
trunk/dll/cmdline.c
r1156 r1177 32 32 #define INCL_LONGLONG // dircnrs.h 33 33 34 #include "fm3dll.h" 34 35 #include "fm3dlg.h" 35 36 #include "fm3str.h" … … 39 40 #include "mainwnd.h" // BubbleHelp 40 41 #include "cmdline.h" // CmdLineDlgProc, CmdLine2DlgProc 41 #include " fm3dll.h"42 #include "chklist.h" // PosOverOkay 42 43 #include "pathutil.h" // MaxCmdLineStr 44 #include "strips.h" // bstrip 45 #include "misc.h" // CheckDriveSpaceAvail 46 #include "srchpath.h" // searchpath 47 #include "wrappers.h" // xfgets_bstripcr 48 #include "valid.h" // IsFile 49 #include "dirs.h" // save_dir2 50 #include "systemf.h" 43 51 #include "fortify.h" 44 52 -
trunk/dll/defview.h
r1165 r1177 18 18 VOID DefaultView(HWND hwnd, HWND hwndFrame, HWND hwndParent, SWP * swp, 19 19 ULONG flags, CHAR * filename); 20 VOID DefaultViewKeys(HWND hwnd, HWND hwndFrame, HWND hwndParent, 21 SWP * swp, CHAR * filename); 22 20 23 #define QuickView(h,f) DefaultView(h,(HWND)0,(HWND)0,NULL,0,f) 21 24 #define QuickEdit(h,f) DefaultView(h,(HWND)0,(HWND)0,NULL,8,f) -
trunk/dll/dircnrs.c
r1156 r1177 64 64 #define INCL_WINWORKPLACE 65 65 66 #include "fm3dll.h" 66 67 #include "fm3dlg.h" 67 68 #include "fm3str.h" … … 78 79 // AdjustDetailsSwitches, CnrDirectEdit, OpenEdit, QuickPopup 79 80 // SayFilter, SaySort, SayView, SetCnrCols, SetDetailsSwitches 80 // SetSortChecks, SetViewMenu, SwitchCommand 81 // SetSortChecks, SetViewMenu, SwitchCommand, CheckMenu 82 // CurrentRecord, DrawTargetEmphasis, IsFm2Window 81 83 #include "chklist.h" // CenterOverWindow, DropListProc 82 84 #include "common.h" // CommonCnrProc, CommonCreateTextChildren, CommonFrameWndProc 83 // CommonTextPaint 84 #include "mainwnd.h" // CountDirCnrs, MakeBubble, TopWindow85 // CommonTextPaint, CommonTextButton, CommonTextProc 86 #include "mainwnd.h" // CountDirCnrs, GetNextWindowPos, MakeBubble, TopWindow 85 87 #include "select.h" // DeselectAll, HideAll, InvertAll, SelectAll, SelectList 86 88 // SpecialSelect2 … … 91 93 #include "notify.h" // NotifyError 92 94 #include "objcnr.h" // ObjCnrDlgProc 93 #include "draglist.h" // PickUp95 #include "draglist.h" // DoFileDrag, FreeDragInfoData, PickUp 94 96 #include "saveclip.h" // SaveListDlgProc 95 97 #include "findrec.h" // ShowCnrRecord … … 99 101 #include "walkem.h" // add_udir 100 102 #include "strips.h" // chop_at_crnl 101 #include "fm3dll.h" 102 //#include "avl.h" // free_archivers 103 #include "droplist.h" // AcceptOneDrop, CheckPmDrgLimit, DropHelp, GetOneDrop 104 #include "presparm.h" // CopyPresParams 105 #include "defview.h" // DefaultViewKeys 106 #include "systemf.h" // ExecOnList 107 #include "filter.h" // Filter 108 #include "findrec.h" // FindCnrRecord 109 #include "input.h" // InputDlgProc 110 #include "shadow.h" // OpenObject 111 #include "mkdir.h" // PMMkDir 112 #include "collect.h" // StartCollector 113 #include "viewer.h" // StartMLEEditor 114 #include "newview.h" // StartViewer 115 #include "undel.h" // UndeleteDlgProc 116 #include "commafmt.h" // commafmt 117 #include "getnames.h" // insert_filename 118 #include "wrappers.h" // xfree 103 119 #include "fortify.h" 104 120 -
trunk/dll/dirsize.c
r1156 r1177 55 55 #define INCL_LONGLONG 56 56 57 #include "fm3dll.h" 57 58 #include "fm3dlg.h" 58 59 #include "fm3str.h" … … 63 64 #include "dirsize.h" 64 65 #include "select.h" // ExpandAll 65 #include "fm3dll.h" 66 66 #include "valid.h" // CheckDrive 67 #include "common.h" // OpenDirCnr 68 #include "shadow.h" // OpenObject 69 #include "presparm.h" // PresParamChanged 70 #include "commafmt.h" // commafmt 71 #include "getnames.h" // export_filename 72 #include "wrappers.h" // xDosFindNext 73 #include "dirs.h" // save_dir2 74 #include "misc.h" // PostMsg 67 75 #include "fortify.h" 68 76 -
trunk/dll/flesh.c
r1155 r1177 32 32 #define INCL_LONGLONG // dircnrs.h 33 33 34 #include "fm3dll.h" 34 35 #include "fm3str.h" 35 36 #include "filldir.h" // FileAttrToString... … … 39 40 #include "valid.h" // IsValidDir 40 41 #include "misc.h" // LoadLibPath 41 #include "fm3dll.h" 42 #include "findrec.h" // FindCnrRecord 43 #include "notify.h" // Notify 44 #include "wrappers.h" // xfree 42 45 43 46 #pragma data_seg(DATA1) -
trunk/dll/init.c
r1156 r1177 77 77 #define DEFINE_GLOBALS 1 78 78 79 #include "fm3dll.h" 79 80 #include "fm3dlg.h" 80 81 #include "datamin.h" … … 105 106 #include "treecnr.h" // TreeClientWndProc, TreeStatProc 106 107 #include "newview.h" // ViewStatusProc, ViewWndProc 107 #include "fm3dll.h" 108 #include "subj.h" // Subject 109 #include "select.h" // UnHilite 110 #include "dirs.h" // save_dir 111 #include "copyf.h" // unlinkf 112 #include "wrappers.h" // xDosSetPathInfo 108 113 #include "misc.h" // HeapThread, LoadDetailsSwitches 109 114 #include "notebook.h" // command line variables (editor etc) 115 #include "strips.h" // bstrip 116 #include "killproc.h" // GetDosPgmName 117 #include "srchpath.h" // searchpath 110 118 #include "fortify.h" 111 119 -
trunk/dll/init.h
r1168 r1177 16 16 #define INIT_H 17 17 18 BOOL InitFM3DLL(HAB hab, int argc, char **argv); 18 19 HWND StartFM3(HAB hab, INT argc, CHAR ** argv); 19 20 -
trunk/fm4.c
r1155 r1177 19 19 #define INCL_LONGLONG 20 20 21 #include "dll\fm3dll.h" 21 22 #include "dll\tools.h" 22 23 #include "dll\version.h" 23 24 #include "dll\mainwnd2.h" // StartFM32 24 #include "dll\ fm3dll.h"25 #include "dll\init.h" // InitFM3DLL 25 26 26 27 int main(int argc, char *argv[]) -
trunk/viewinfs.c
r1155 r1177 16 16 #define INCL_WIN 17 17 18 #include "dll\fm3dll.h" 18 19 #include "dll\fm3dlg.h" 19 #include "dll\ fm3dll.h"20 #include "dll\init.h" // InitFM3DLL 20 21 #include "dll\viewinf.h" // ViewInfProc 21 22
Note:
See TracChangeset
for help on using the changeset viewer.