Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/copyf.c
r1193 r1206 34 34 35 35 #include "fm3dll.h" 36 #include "killproc.h" // Data declaration(s) 37 #include "notebook.h" // Data declaration(s) 38 #include "info.h" // Data declaration(s) 39 #include "init.h" // Data declaration(s) 40 #include "arccnrs.h" 36 41 #include "fm3str.h" 37 42 #include "errutil.h" // Dos_Error... -
trunk/dll/datamin.c
r1178 r1206 36 36 37 37 #include "fm3dll.h" 38 #include "info.h" // Data declaration(s) 39 #include "notebook.h" // Data declaration(s) 40 #include "inis.h" // Data declaration(s) 41 #include "init.h" // Data declaration(s) 42 #include "defview.h" // Data declaration(s) 38 43 #include "fm3dlg.h" 39 44 #include "fm3str.h" … … 57 62 #include "fortify.h" 58 63 59 #pragma data_seg(DATA2)60 61 static PSZ pszSrcFile = __FILE__;62 63 64 APIRET16 APIENTRY16 Dos16MemAvail(PULONG pulAvailMem); 64 65 … … 67 68 68 69 static VOID dataminThread(VOID * pv); 70 71 // Data definitions 72 #pragma data_seg(GLOBAL1) 73 HWND DataHwnd; 74 BOOL fDataInclRemote; 75 BOOL fDataShowDrives; 76 BOOL fDataToFore; 77 BOOL fDullMin; 78 79 #pragma data_seg(DATA2) 80 81 static PSZ pszSrcFile = __FILE__; 69 82 70 83 long MINI_X = 208, MINI_Y = 16; -
trunk/dll/datamin.h
r902 r1206 39 39 HWND CreateDataBar(HWND hwndParent, ULONG fl); 40 40 41 // Data declarations 42 extern HWND DataHwnd; 43 extern BOOL fDataInclRemote; 44 extern BOOL fDataShowDrives; 45 extern BOOL fDataToFore; 46 extern BOOL fDullMin; 47 41 48 #endif // DATAMIN_H -
trunk/dll/defview.c
r1189 r1206 34 34 #include <os2me.h> 35 35 36 #include "fm3dll.h" 37 #include "mainwnd2.h" // Data declaration(s) 38 #include "init.h" // Data declaration(s) 36 39 #include "fm3dlg.h" 37 40 #include "arccnrs.h" // StartArcCnr … … 49 52 #include "viewer.h" // StartMLEEditor 50 53 #include "newview.h" // StartViewer 51 #include " fm3dll.h"54 #include "mainwnd.h" // Data declaration(s) 52 55 #include "misc.h" // ExecFile, ViewHelp 53 56 57 // Data definitions 54 58 static PSZ pszSrcFile = __FILE__; 59 60 #pragma data_seg(GLOBAL2) 61 CHAR *Default; 55 62 56 63 BOOL ShowMultimedia(CHAR * filename) -
trunk/dll/defview.h
r1195 r1206 26 26 BOOL ShowMultimedia(CHAR * filename); 27 27 28 // Data declarations 29 extern CHAR *Default; 28 30 29 31 #endif // DEFVIEW_H -
trunk/dll/dircnrs.c
r1177 r1206 65 65 66 66 #include "fm3dll.h" 67 #include "mainwnd2.h" // Data declaration(s) 68 #include "grep.h" // Data declaration(s) 69 #include "info.h" // Data declaration(s) 70 #include "treecnr.h" // Data declaration(s) 71 #include "dircnrs.h" // Data declaration(s) 72 #include "init.h" // Data declaration(s) 67 73 #include "fm3dlg.h" 68 74 #include "fm3str.h" … … 118 124 #include "wrappers.h" // xfree 119 125 #include "fortify.h" 126 127 // Data definitions 128 #pragma data_seg(GLOBAL1) 129 HWND DirCnrMenu; 130 HWND hwndAttr; 131 HWND hwndDate; 132 133 #pragma data_seg(GLOBAL2) 134 INT sortFlags; 120 135 121 136 #pragma data_seg(DATA1) -
trunk/dll/dircnrs.h
r1195 r1206 169 169 #endif 170 170 171 // Data declarations 172 extern HWND DirCnrMenu; 173 extern HWND hwndAttr; 174 extern HWND hwndDate; 175 extern INT sortFlags; 176 171 177 #endif // DIRCNRS_H -
trunk/dll/dirs.c
r1159 r1206 20 20 21 21 #include "fm3dll.h" 22 #include "init.h" // Data declaration(s) 22 23 #include "dirs.h" 23 24 #include "valid.h" // IsValidDir -
trunk/dll/dirsize.c
r1177 r1206 56 56 57 57 #include "fm3dll.h" 58 #include "draglist.h" // Data declaration(s) 59 #include "init.h" // Data declaration(s) 60 #include "notebook.h" // Data declaration(s) 61 #include "mainwnd.h" // Data declaration(s) 62 #include "newview.h" // Data declarations 58 63 #include "fm3dlg.h" 59 64 #include "fm3str.h" -
trunk/dll/dirsize.h
r1196 r1206 16 16 #define DIRSIZE_H 17 17 18 #define DIRSIZE_FRAME 100 19 #define DIRSIZE_LISTBOX 101 20 #define DIRSIZE_LABEL 102 21 #define DIRSIZE_UNITSFREE 103 22 #define DIRSIZE_UNITSIZE 104 23 #define DIRSIZE_PERCENT 105 24 #define DIRSIZE_BYTESUSED 106 25 #define DIRSIZE_BYTESFREE 107 26 #define DIRSIZE_UNITSUSED 108 27 #define DIRSIZE_IFS 109 28 #define DIRSIZE_LOCAL 110 29 #define DIRSIZE_SLIDER 111 30 18 31 MRESULT EXPENTRY DirSizeProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2); 19 32
Note:
See TracChangeset
for help on using the changeset viewer.