Changeset 1184


Ignore:
Timestamp:
Sep 10, 2008, 11:56:44 PM (17 years ago)
Author:
John Small
Message:

Ticket 187: Draft 2: Move remaining function declarations

Location:
trunk/dll
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/chklist.c

    r1160 r1184  
    2424#define INCL_LONGLONG
    2525
     26#include "fm3dll.h"
    2627#include "fm3dlg.h"
    2728#include "fm3str.h"
     
    3435#include "defview.h"                    // QuickView
    3536#include "valid.h"                      // IsExecutable
    36 #include "fm3dll.h"
     37#include "walkem.h"                     // WalkAllDlgProc
     38#include "misc.h"                       // PaintRecessedWindow
    3739
    3840#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
    119VOID CenterOverWindow(HWND hwnd);
    220MRESULT EXPENTRY CheckListProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
    321MRESULT EXPENTRY DropListProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
     22BOOL PopupMenu(HWND hwndParent, HWND hwndOwner, HWND hwndMenu);
     23VOID PosOverOkay(HWND hwnd);
    424
     25#endif  // CHKLIST_H
  • trunk/dll/commafmt.c

    r1160 r1184  
    3131#include <string.h>
    3232
     33#include "fm3dll.h"
    3334#include "commafmt.h"
    34 #include "fm3dll.h"
    3535
    3636size_t commafmt(char *pszBuf,   // Output buffer
  • trunk/dll/commafmt.h

    r1166 r1184  
    1616#define COMMAFMT_H
    1717
    18 
     18size_t CommaFmtUL(char *pszBuf, UINT cBufSize, ULONG ullNumber,
     19                  CHAR chPreferred);
     20size_t CommaFmtULL(char *pszBuf, UINT cBufSize, ULONGLONG ullNumber,
     21                   CHAR chPreferred);
     22size_t commafmt(PSZ pszBuf, UINT cBufSize, LONG lNumber);
    1923
    2024#endif // COMMAFMT_H
  • trunk/dll/fonts.h

    r1169 r1184  
    1616#define FONTS_H
    1717
     18FATTRS *SetMLEFont(HWND hwndMLE, FATTRS * fattrs, ULONG flags);
    1819VOID SetPresParamFromFattrs(HWND hwnd, FATTRS * fattrs,
    1920                            SHORT sNominalPointSize, FIXED fxPointSize);
  • trunk/dll/literal.h

    r1169 r1184  
    1818PSZ fixup(const PCH pachInBuf, PSZ pszOutBuf, const UINT cBufBytes,
    1919          const UINT cInBytes);
     20UINT literal(PSZ pszBuf);
     21BOOL wildcard(const PSZ pszBuf, const PSZ pszWildCard,
     22              const BOOL fNotFileSpec);
    2023
    2124
  • trunk/dll/rename.c

    r1160 r1184  
    2121#define INCL_LONGLONG
    2222
     23#include "fm3dll.h"
    2324#include "fm3dlg.h"
    2425#include "fm3str.h"
     
    2829#include "rename.h"
    2930#include "valid.h"                      // TestFDates
    30 #include "fm3dll.h"
     31#include "mkdir.h"                      // SetDir
     32#include "commafmt.h"                   // CommaFmtULL
     33#include "strips.h"                     // bstrip
    3134
    3235MRESULT EXPENTRY RenameProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2)
  • trunk/dll/srchpath.c

    r1161 r1184  
    2626#include "errutil.h"                    // Dos_Error...
    2727#include "srchpath.h"
     28#include "systemf.h"                    // runemf2
    2829#include "fm3dll.h"
    2930
    3031static PSZ pszSrcFile = __FILE__;
     32
     33// static CHAR *first_path(CHAR * path, CHAR * ret);
     34static CHAR *searchapath(CHAR * path, CHAR * filename);
    3135
    3236#pragma data_seg(DATA1)
     
    6973}
    7074
     75#if 0   // JBS
    7176CHAR *first_path(CHAR * path, CHAR * ret)
    7277{
     
    9196  return ret;
    9297}
     98#endif
    9399
    94100/**
  • trunk/dll/subj.c

    r1047 r1184  
    2626#define INCL_LONGLONG
    2727
     28#include "fm3dll.h"
    2829#include "fm3dlg.h"
    2930#include "fm3str.h"
    3031#include "errutil.h"                    // Dos_Error...
    3132#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
    3337#include "fortify.h"
    3438
  • trunk/dll/tools.c

    r1160 r1184  
    3333#define INCL_LONGLONG
    3434
     35#include "fm3dll.h"
    3536#include "fm3dlg.h"
    3637#include "tools.h"
     
    4142#include "fortify.h"
    4243#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
    4454
    4555#pragma data_seg(DATA1)
Note: See TracChangeset for help on using the changeset viewer.