Changeset 1207
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/dll/draglist.c ¶
r1181 r1207 35 35 36 36 #include "fm3dll.h" 37 #include "info.h" // Data declaration(s) 38 #include "init.h" // Data declaration(s) 39 #include "newview.h" // Data declarations 37 40 #include "errutil.h" // Dos_Error... 38 41 #include "draglist.h" … … 43 46 #include "fortify.h" 44 47 48 // Data definitions 45 49 static PSZ pszSrcFile = __FILE__; 50 51 #pragma data_seg(GLOBAL1) 52 HPOINTER hptrDir; 53 HPOINTER hptrFile; 54 HPOINTER hptrLast; 55 56 #pragma data_seg(GLOBAL2) 57 CHAR *DRMDRFLIST; 46 58 47 59 /** -
TabularUnified trunk/dll/draglist.h ¶
r1196 r1207 22 22 BOOL PickUp(HWND hwndCnr, HWND hwndObj, PCNRDRAGINIT pcd); 23 23 24 // Data declarations 25 extern CHAR *DRMDRFLIST; 26 extern HPOINTER hptrDir; 27 extern HPOINTER hptrFile; 28 extern HPOINTER hptrLast; 24 29 25 30 #endif // DRAGLIST_H -
TabularUnified trunk/dll/droplist.c ¶
r1182 r1207 31 31 32 32 #include "fm3dll.h" 33 #include "avl.h" // Data declaration(s) 34 #include "init.h" // Data declaration(s) 33 35 #include "fm3str.h" 34 36 #include "errutil.h" // Dos_Error... -
TabularUnified trunk/dll/eas.c ¶
r1179 r1207 36 36 37 37 #include "fm3dll.h" 38 #include "notebook.h" // Data declaration(s) 39 #include "info.h" // Data declaration(s) 40 #include "init.h" // Data declaration(s) 41 #include "mainwnd.h" // Data declaration(s) 42 #include "newview.h" // Data declarations 38 43 #include "fm3dlg.h" 39 44 #include "fm3str.h" -
TabularUnified trunk/dll/extract.c ¶
r1179 r1207 26 26 27 27 #include "fm3dll.h" 28 #include "init.h" // Data declaration(s) 29 #include "arccnrs.h" // Data declaration(s) 30 #include "notebook.h" // Data declaration(s) 31 #include "mainwnd.h" // Data declaration(s) 28 32 #include "fm3dlg.h" 29 33 #include "fm3str.h" -
TabularUnified trunk/dll/filldir.c ¶
r1182 r1207 64 64 65 65 #include "fm3dll.h" 66 #include "draglist.h" // Data declaration(s) 67 #include "treecnr.h" // Data declaration(s) 68 #include "info.h" // Data declaration(s) 69 #include "newview.h" // Data declaration(s) 66 70 #include "fm3str.h" 67 71 #include "filldir.h" … … 80 84 #include "commafmt.h" // CommaFmtULL 81 85 #include "wrappers.h" // xDosFindNext 82 86 #include "init.h" // GetTidForWindow 87 88 // Data definitions 83 89 static PSZ pszSrcFile = __FILE__; 90 static BOOL fFirstTime; 91 92 #pragma data_seg(GLOBAL1) 93 HPOINTER hptrEnv; 94 HPOINTER hptrHidden; 95 HPOINTER hptrReadonly; 96 HPOINTER hptrSystem; 97 98 #pragma data_seg(GLOBAL2) 99 CHAR *FM3Tools; 100 CHAR *WPProgram; 84 101 85 102 /** -
TabularUnified trunk/dll/filldir.h ¶
r1196 r1207 50 50 INT RemoveCnrItems(HWND hwnd, PCNRITEM pci, USHORT usCnt, USHORT usFlags); 51 51 52 // Data declarations 53 extern CHAR *FM3Tools; 54 extern CHAR *WPProgram; 55 extern HPOINTER hptrEnv; 56 extern HPOINTER hptrHidden; 57 extern HPOINTER hptrReadonly; 58 extern HPOINTER hptrSystem; 59 52 60 #endif // FILLDIR_H -
TabularUnified trunk/dll/filter.c ¶
r1185 r1207 29 29 30 30 #include "fm3dll.h" 31 #include "arccnrs.h" // Data declaration(s) 32 #include "notebook.h" // Data declaration(s) 33 #include "init.h" // Data declaration(s) 31 34 #include "fm3dlg.h" 32 35 #include "fm3str.h" -
TabularUnified trunk/dll/flesh.c ¶
r1177 r1207 33 33 34 34 #include "fm3dll.h" 35 #include "draglist.h" // Data declaration(s) 36 #include "notebook.h" // Data declaration(s) 37 #include "info.h" // Data declaration(s) 38 #include "init.h" // Data declaration(s) 39 #include "mainwnd.h" // Data declaration(s) 35 40 #include "fm3str.h" 36 41 #include "filldir.h" // FileAttrToString... … … 44 49 #include "wrappers.h" // xfree 45 50 51 // Data definitions 46 52 #pragma data_seg(DATA1) 47 53 48 54 static PSZ pszSrcFile = __FILE__; 55 56 #pragma data_seg(GLOBAL1) 57 ULONG NoBrokenNotify; 58 BOOL fFilesInTree; 49 59 50 60 BOOL FleshEnv(HWND hwndCnr, PCNRITEM pciParent) -
TabularUnified trunk/dll/flesh.h ¶
r1197 r1207 21 21 BOOL UnFlesh(HWND hwndCnr, PCNRITEM pciParent); 22 22 23 // Data declarations 24 extern ULONG NoBrokenNotify; 25 extern BOOL fFilesInTree; 23 26 24 27 #endif // FLESH_H
Note:
See TracChangeset
for help on using the changeset viewer.