Changeset 1184
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/chklist.c
r1160 r1184 24 24 #define INCL_LONGLONG 25 25 26 #include "fm3dll.h" 26 27 #include "fm3dlg.h" 27 28 #include "fm3str.h" … … 34 35 #include "defview.h" // QuickView 35 36 #include "valid.h" // IsExecutable 36 #include "fm3dll.h" 37 #include "walkem.h" // WalkAllDlgProc 38 #include "misc.h" // PaintRecessedWindow 37 39 38 40 #pragma data_seg(DATA1) -
trunk/dll/chklist.h
r1170 r1184 1 2 /*********************************************************************** 3 4 $Id: $ 5 6 <<description here>> 7 8 Copyright (c) 1993-98 M. Kimes 9 Copyright (c) 2001, 2008 Steven H. Levine 10 11 05 Sep 08 JBS Ticket 187: Refactor FM3DLL.H 12 13 ***********************************************************************/ 14 15 #if !defined(CHKLIST_H) 16 17 #define CHKLIST_H 18 1 19 VOID CenterOverWindow(HWND hwnd); 2 20 MRESULT EXPENTRY CheckListProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2); 3 21 MRESULT EXPENTRY DropListProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2); 22 BOOL PopupMenu(HWND hwndParent, HWND hwndOwner, HWND hwndMenu); 23 VOID PosOverOkay(HWND hwnd); 4 24 25 #endif // CHKLIST_H -
trunk/dll/commafmt.c
r1160 r1184 31 31 #include <string.h> 32 32 33 #include "fm3dll.h" 33 34 #include "commafmt.h" 34 #include "fm3dll.h"35 35 36 36 size_t commafmt(char *pszBuf, // Output buffer -
trunk/dll/commafmt.h
r1166 r1184 16 16 #define COMMAFMT_H 17 17 18 18 size_t CommaFmtUL(char *pszBuf, UINT cBufSize, ULONG ullNumber, 19 CHAR chPreferred); 20 size_t CommaFmtULL(char *pszBuf, UINT cBufSize, ULONGLONG ullNumber, 21 CHAR chPreferred); 22 size_t commafmt(PSZ pszBuf, UINT cBufSize, LONG lNumber); 19 23 20 24 #endif // COMMAFMT_H -
trunk/dll/fonts.h
r1169 r1184 16 16 #define FONTS_H 17 17 18 FATTRS *SetMLEFont(HWND hwndMLE, FATTRS * fattrs, ULONG flags); 18 19 VOID SetPresParamFromFattrs(HWND hwnd, FATTRS * fattrs, 19 20 SHORT sNominalPointSize, FIXED fxPointSize); -
trunk/dll/literal.h
r1169 r1184 18 18 PSZ fixup(const PCH pachInBuf, PSZ pszOutBuf, const UINT cBufBytes, 19 19 const UINT cInBytes); 20 UINT literal(PSZ pszBuf); 21 BOOL wildcard(const PSZ pszBuf, const PSZ pszWildCard, 22 const BOOL fNotFileSpec); 20 23 21 24 -
trunk/dll/rename.c
r1160 r1184 21 21 #define INCL_LONGLONG 22 22 23 #include "fm3dll.h" 23 24 #include "fm3dlg.h" 24 25 #include "fm3str.h" … … 28 29 #include "rename.h" 29 30 #include "valid.h" // TestFDates 30 #include "fm3dll.h" 31 #include "mkdir.h" // SetDir 32 #include "commafmt.h" // CommaFmtULL 33 #include "strips.h" // bstrip 31 34 32 35 MRESULT EXPENTRY RenameProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2) -
trunk/dll/srchpath.c
r1161 r1184 26 26 #include "errutil.h" // Dos_Error... 27 27 #include "srchpath.h" 28 #include "systemf.h" // runemf2 28 29 #include "fm3dll.h" 29 30 30 31 static PSZ pszSrcFile = __FILE__; 32 33 // static CHAR *first_path(CHAR * path, CHAR * ret); 34 static CHAR *searchapath(CHAR * path, CHAR * filename); 31 35 32 36 #pragma data_seg(DATA1) … … 69 73 } 70 74 75 #if 0 // JBS 71 76 CHAR *first_path(CHAR * path, CHAR * ret) 72 77 { … … 91 96 return ret; 92 97 } 98 #endif 93 99 94 100 /** -
trunk/dll/subj.c
r1047 r1184 26 26 #define INCL_LONGLONG 27 27 28 #include "fm3dll.h" 28 29 #include "fm3dlg.h" 29 30 #include "fm3str.h" 30 31 #include "errutil.h" // Dos_Error... 31 32 #include "strutil.h" // GetPString 32 #include "fm3dll.h" 33 #include "input.h" // InputDlgProc 34 #include "subj.h" 35 #include "wrappers.h" // xDosSetPathInfo 36 #include "strips.h" // bstrip 33 37 #include "fortify.h" 34 38 -
trunk/dll/tools.c
r1160 r1184 33 33 #define INCL_LONGLONG 34 34 35 #include "fm3dll.h" 35 36 #include "fm3dlg.h" 36 37 #include "tools.h" … … 41 42 #include "fortify.h" 42 43 #include "loadbmp.h" // LoadBitmapFromFileNum 43 #include "fm3dll.h" 44 #include "copyf.h" // docopyf 45 #include "literal.h" // literal 46 #include "wrappers.h" // xfgets 47 #include "misc.h" // CheckDriveSpaceAvail 48 #include "srchpath.h" // searchpath 49 #include "stristr.h" // stristr 50 #include "valid.h" // IsFile 51 #include "systemf.h" // runemf2 52 #include "dirs.h" // save_dir2 53 #include "strips.h" // bstrip 44 54 45 55 #pragma data_seg(DATA1)
Note:
See TracChangeset
for help on using the changeset viewer.
