Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/mainwnd2.c
r1186 r1210 40 40 41 41 #include "fm3dll.h" 42 #include "killproc.h" // Data declaration(s) 43 #include "grep.h" // Data declaration(s) 44 #include "autoview.h" // Data declaration(s) 45 #include "dircnrs.h" // Data declaration(s) 46 #include "worker.h" // Data declaration(s) 47 #include "init.h" // Data declaration(s) 42 48 #include "fm3dlg.h" 43 49 #include "fm3str.h" … … 81 87 PERSON1DATA; 82 88 89 // Data definitions 83 90 static PSZ pszSrcFile = __FILE__; 91 static ULONG TreeWidth; 92 93 #pragma data_seg(GLOBAL1) 94 PFNWP PFNWPFrame; 95 96 #pragma data_seg(GLOBAL2) 97 CHAR realappname[12]; 84 98 85 99 static MRESULT EXPENTRY MainFrameWndProc2(HWND hwnd, ULONG msg, MPARAM mp1, -
trunk/dll/mainwnd2.h
r1198 r1210 19 19 HWND StartFM32(HAB hab, INT argc, CHAR ** argv); 20 20 21 // Data declarations 22 extern PFNWP PFNWPFrame; 23 extern CHAR realappname[12]; 21 24 22 25 #endif // MAINWND2_H -
trunk/dll/makelist.c
r1185 r1210 26 26 #define INCL_LONGLONG 27 27 28 #include "fm3dll.h" // 05 Jan 08 SHL fixme to be gone 28 29 #include "fm3str.h" 29 30 #include "makelist.h" … … 32 33 #include "dircnrs.h" 33 34 #include "misc.h" // CurrentRecord 34 #include " fm3dll.h" // 05 Jan 08 SHL fixme to be gone35 #include "newview.h" // Data declarations 35 36 #include "wrappers.h" // xfree 36 37 #include "fortify.h" // 06 May 08 SHL -
trunk/dll/misc.c
r1182 r1210 66 66 67 67 #include "fm3dll.h" 68 #include "killproc.h" // Data declaration(s) 69 #include "comp.h" // Data declaration(s) 70 #include "treecnr.h" // Data declaration(s) 71 #include "mainwnd.h" // Data declaration(s) 72 #include "init.h" // Data declaration(s) 73 #include "dircnrs.h" // Data declaration(s) 74 #include "newview.h" // Data declarations 75 #include "collect.h" // data declaration(s) 76 #include "notebook.h" // data declaration(s) 77 #include "arccnrs.h" 68 78 #include "fm3dlg.h" 69 79 #include "fm3str.h" … … 86 96 #include "misc.h" 87 97 98 // Data definitions 99 #pragma data_seg(GLOBAL1) 100 HWND CollectorDirMenu; 101 HWND CollectorFileMenu; 102 HWND DirMenu; 103 HWND FileMenu; 104 HWND TreeMenu; 105 BOOL fDefaultDeletePerm; 106 BOOL fWorkPlace; 107 108 #pragma data_seg(GLOBAL4) 109 ULONG numswitches; 110 HSWITCH switches[499]; 111 88 112 #pragma data_seg(DATA1) 89 90 113 static PSZ pszSrcFile = __FILE__; 91 114 -
trunk/dll/misc.h
r1198 r1210 75 75 VOID disable_menuitem(HWND hwndMenu, USHORT id, BOOL enable); 76 76 77 // Data declarations 78 extern HWND CollectorDirMenu; 79 extern HWND CollectorFileMenu; 80 extern HWND DirMenu; 81 extern HWND FileMenu; 82 extern HWND TreeMenu; 83 extern BOOL fDefaultDeletePerm; 84 extern BOOL fWorkPlace; 85 extern ULONG numswitches; 86 extern HSWITCH switches[499]; 87 77 88 #endif // MISC_H -
trunk/dll/mkdir.c
r1187 r1210 23 23 24 24 #include "fm3dll.h" 25 #include "common.h" // Data declaration(s) 26 #include "init.h" // Data declaration(s) 27 #include "info.h" // Data declaration(s) 28 #include "mainwnd.h" // Data declaration(s) 25 29 #include "fm3dlg.h" 26 30 #include "fm3str.h" … … 34 38 #include "dirs.h" // save_dir2 35 39 #include "input.h" // InputDlgProc 40 41 // Data definitions 42 #pragma data_seg(GLOBAL2) 43 CHAR targetdir[CCHMAXPATH]; 36 44 37 45 #pragma alloc_text(MKDIR,MassMkdir,SetDir,PMMkDir,SetTargetDir) -
trunk/dll/mkdir.h
r1198 r1210 21 21 void SetTargetDir(HWND hwnd, BOOL justshow); 22 22 23 // Data declarations 24 extern CHAR targetdir[CCHMAXPATH]; 25 23 26 #endif // MKDIR_H -
trunk/dll/mle.c
r1185 r1210 35 35 36 36 #include "fm3dll.h" 37 #include "init.h" // Data declaration(s) 38 #include "mainwnd.h" // Data declaration(s) 39 #include "newview.h" // Data declarations 37 40 #include "fm3dlg.h" 38 41 #include "mle.h" -
trunk/dll/newview.c
r1186 r1210 47 47 48 48 #include "fm3dll.h" 49 #include "mainwnd2.h" // Data declaration(s) 50 #include "collect.h" // Data declaration(s) 51 #include "grep.h" // Data declaration(s) 52 #include "dircnrs.h" // Data declaration(s) 53 #include "init.h" // Data declaration(s) 49 54 #include "fm3dlg.h" 50 55 #include "fm3str.h" … … 81 86 #include "fortify.h" 82 87 88 // Data definitions 89 #pragma data_seg(GLOBAL1) 90 HEV CompactSem; 91 BOOL fFtpRunWPSDefault; 92 BOOL fHttpRunWPSDefault; 93 94 #pragma data_seg(GLOBAL2) 95 CHAR *httprun; 96 CHAR *mailrun; 97 98 #pragma data_seg(GLOBAL3) 99 LONG standardcolors[16]; 100 83 101 #pragma data_seg(DATA2) 84 85 102 static PSZ pszSrcFile = __FILE__; 86 103 -
trunk/dll/newview.h
r1199 r1210 21 21 HWND hwndRestore); 22 22 23 // Data declarations 24 extern HEV CompactSem; 25 extern BOOL fFtpRunWPSDefault; 26 extern BOOL fHttpRunWPSDefault; 27 extern LONG standardcolors[16]; 28 extern CHAR *httprun; 29 extern CHAR *mailrun; 30 23 31 #endif // NEWVIEW_H
Note:
See TracChangeset
for help on using the changeset viewer.