Changeset 1214
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/undel.c
r1185 r1214 29 29 30 30 #include "fm3dll.h" 31 #include "init.h" // Data declaration(s) 32 #include "mainwnd.h" // Data declaration(s) 31 33 #include "fm3dlg.h" 32 34 #include "fm3str.h" -
trunk/dll/update.c
r1189 r1214 31 31 32 32 #include "fm3dll.h" 33 #include "init.h" // Data declaration(s) 34 #include "notebook.h" // Data declaration(s) 35 #include "info.h" // Data declaration(s) 36 #include "newview.h" // Data declarations 33 37 #include "fm3str.h" 34 38 #include "errutil.h" // Dos_Error... -
trunk/dll/uudecode.c
r1183 r1214 28 28 29 29 #include "fm3dll.h" 30 #include "notebook.h" // Data declaration(s) 30 31 #include "fm3dlg.h" 31 32 #include "fm3str.h" -
trunk/dll/valid.c
r1193 r1214 39 39 40 40 #include "fm3dll.h" 41 #include "treecnr.h" // Data declaration(s) 42 #include "info.h" // Data declaration(s) 43 #include "notebook.h" // Data declaration(s) 41 44 #include "fm3str.h" 42 45 #include "errutil.h" // Dos_Error... … … 45 48 #include "dirs.h" // save_dir2 46 49 #include "strips.h" // bstrip 47 48 static PSZ pszSrcFile = __FILE__; 50 #include "init.h" // GetTidForWindow 51 49 52 50 53 //static BOOL IsDesktop(HAB hab, HWND hwnd); 51 54 //static BOOL IsFileSame(CHAR * filename1, CHAR * filename2); 52 55 //static char *IsVowel(char a); 56 57 // Data definitions 58 static PSZ pszSrcFile = __FILE__; 59 60 #pragma data_seg(GLOBAL2) 61 CHAR *CDFS; 62 CHAR *FAT32; 63 CHAR *HPFS; 64 CHAR *HPFS386; 65 CHAR *ISOFS; 66 CHAR *JFS; 67 CHAR *NDFS32; 68 CHAR *NTFS; 69 CHAR *RAMFS; 53 70 54 71 APIRET MakeFullName(char *pszFileName) -
trunk/dll/valid.h
r1202 r1214 41 41 BOOL needs_quoting(CHAR * f); 42 42 43 // Data declarations 44 extern CHAR *CDFS; 45 extern CHAR *FAT32; 46 extern CHAR *HPFS; 47 extern CHAR *HPFS386; 48 extern CHAR *ISOFS; 49 extern CHAR *JFS; 50 extern CHAR *NTFS; 51 extern CHAR *NDFS32; 52 extern CHAR *RAMFS; 53 43 54 #endif // VALID_H -
trunk/dll/viewer.c
r1187 r1214 29 29 30 30 #include "fm3dll.h" 31 #include "mainwnd2.h" // Data declaration(s) 32 #include "collect.h" // Data declaration(s) 33 #include "grep.h" // Data declaration(s) 34 #include "dircnrs.h" // Data declaration(s) 35 #include "init.h" // Data declaration(s) 31 36 #include "fm3dlg.h" 32 37 #include "fm3str.h" -
trunk/dll/viewinf.c
r1183 r1214 30 30 31 31 #include "fm3dll.h" 32 #include "notebook.h" // Data declaration(s) 33 #include "init.h" // Data declaration(s) 34 #include "mainwnd.h" // Data declaration(s) 32 35 #include "fm3dlg.h" 33 36 #include "fm3str.h" -
trunk/dll/walkem.c
r1186 r1214 49 49 50 50 #include "fm3dll.h" 51 #include "arccnrs.h" // Data declaration(s) 52 #include "info.h" // Data declaration(s) 53 #include "init.h" // Data declaration(s) 54 #include "mainwnd.h" // Data declaration(s) 51 55 #include "fm3dlg.h" 52 56 #include "fm3str.h" … … 65 69 #include "fortify.h" 66 70 67 #pragma data_seg(DATA1)68 69 static PSZ pszSrcFile = __FILE__;70 71 static MRESULT EXPENTRY WalkTwoDlgProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);72 static VOID load_setups(VOID);73 static BOOL remove_ldir(PSZ path);74 75 71 typedef struct 76 72 { … … 83 79 WALKER; 84 80 81 static MRESULT EXPENTRY WalkTwoDlgProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2); 82 static VOID load_setups(VOID); 83 static BOOL remove_ldir(PSZ path); 84 85 // Data definitions 86 #pragma data_seg(DATA1) 87 88 static PSZ pszSrcFile = __FILE__; 85 89 static CHAR WalkFont[CCHMAXPATH] = ""; 86 90 static ULONG WalkFontSize = sizeof(WalkFont); … … 95 99 // 18 Aug 07 SHL fixme to stop supporting old style 1 year from now? 96 100 static const ULONG ulOldSetupsBytes = 100 * 13; // Prior to 3.0.7 101 102 #pragma data_seg(GLOBAL1) 103 BOOL fUdirsChanged; 104 BOOL loadedudirs; 105 106 #pragma data_seg(GLOBAL2) 107 LINKDIRS *ldirhead; 108 LINKDIRS *udirhead; 97 109 98 110 /** -
trunk/dll/walkem.h
r1202 r1214 51 51 #endif 52 52 53 // Data declarations 54 extern BOOL fUdirsChanged; 55 extern LINKDIRS *ldirhead; 56 extern BOOL loadedudirs; 57 extern LINKDIRS *udirhead; 58 53 59 #endif // WALKEM_H -
trunk/dll/winlist.c
r1186 r1214 22 22 23 23 #include "fm3dll.h" 24 #include "killproc.h" // Data declaration(s) 25 #include "init.h" // Data declaration(s) 26 #include "newview.h" // Data declaration(s) 27 #include "notebook.h" // Data declaration(s) 24 28 #include "fm3dlg.h" 25 29 #include "mainwnd.h" // GetNextWindowPos
Note:
See TracChangeset
for help on using the changeset viewer.