Changeset 1188


Ignore:
Timestamp:
Sep 10, 2008, 11:58:30 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
  • TabularUnified trunk/dll/assoc.c

    r1163 r1188  
    3333#define INCL_LONGLONG                   // dircnrs.h
    3434
     35#include "fm3dll.h"
    3536#include "fm3dlg.h"
    3637#include "fm3str.h"
     
    3940#include "strutil.h"                    // GetPString
    4041#include "assoc.h"
    41 #include "fm3dll.h"
     42#include "droplist.h"                   // AcceptOneDrop, DropHelp, GetOneDrop
     43#include "misc.h"                       // DrawTargetEmphasis
     44#include "systemf.h"                    // ExecOnList
     45#include "shadow.h"                     // OpenObject
     46#include "getnames.h"                   // insert_filename
     47#include "literal.h"                    // literal
     48#include "wrappers.h"                   // xfgets
     49#include "strips.h"                     // bstrip
     50#include "stristr.h"                    // stristr
     51#include "dirs.h"                       // save_dir2
    4252#include "fortify.h"
    4353
  • TabularUnified trunk/dll/command.c

    r1119 r1188  
    3838#define INCL_LONGLONG                   // dircnrs.h
    3939
     40#include "fm3dll.h"
    4041#include "fm3dlg.h"
    4142#include "fm3str.h"
     
    4445#include "errutil.h"                    // Dos_Error...
    4546#include "strutil.h"                    // GetPString
    46 #include "fm3dll.h"
     47#include "droplist.h"                   // AcceptOneDrop, DropHelp, GetOneDrop
     48#include "misc.h"                       // DrawTargetEmphasis
     49#include "systemf.h"                    // ExecOnList
     50#include "getnames.h"                   // insert_filename
     51#include "wrappers.h"                   // xfgets
    4752#include "pathutil.h"                   // NormalizeCmdLine
    4853#include "command.h"
     54#include "strips.h"                     // bstrip
     55#include "dirs.h"                       // save_dir2
    4956#include "fortify.h"
    5057
  • TabularUnified trunk/dll/copyf.c

    r1163 r1188  
    3333#define INCL_LONGLONG
    3434
     35#include "fm3dll.h"
    3536#include "fm3str.h"
    3637#include "errutil.h"                    // Dos_Error...
     
    3839#include "copyf.h"
    3940#include "literal.h"                    // fixup
    40 #include "fm3dll.h"
     41#include "misc.h"                       // Broadcast
     42#include "valid.h"                      // MakeFullName
     43#include "wrappers.h"                   // xDosSetPathInfo
     44#include "strips.h"                     // bstrip
    4145#include "fortify.h"
    4246
    4347static PSZ pszSrcFile = __FILE__;
     48
     49static CHAR *GetLongName(CHAR * oldname, CHAR * buffer);
     50static CHAR *TruncName(CHAR * oldname, CHAR * buffer);
    4451
    4552//static CHAR default_disk(VOID);
  • TabularUnified trunk/dll/killproc.c

    r1163 r1188  
    3333#define INCL_LONGLONG                   // dircnrs.h
    3434
     35#include "fm3dll.h"
    3536#include "fm3dlg.h"
    3637#include "fm3str.h"
     
    4142#include "killproc.h"
    4243#include "systemf.h"                    // ShowSession
    43 #include "fm3dll.h"
     44#include "common.h"                     // DecrThreadUsage, IncrThreadUsage
     45#include "notify.h"                     // Notify
     46#include "copyf.h"                      // unlinkf
     47#include "wrappers.h"                   // xfgets
     48#include "stristr.h"                    // stristr
     49#include "misc.h"                       // PostMsg
    4450#include "fortify.h"
    4551
  • TabularUnified trunk/dll/mkdir.h

    r1167 r1188  
    1717
    1818APIRET MassMkdir(HWND hwndClient, CHAR * dir);
     19BOOL PMMkDir(HWND hwnd, CHAR * filename, BOOL copy);
     20APIRET SetDir(HWND hwndClient, HWND hwnd, CHAR * dir, INT flags);
     21void SetTargetDir(HWND hwnd, BOOL justshow);
    1922
    2023#endif // MKDIR_H
  • TabularUnified trunk/dll/notify.c

    r1163 r1188  
    3333#include "strutil.h"                    // GetPString
    3434#include "notify.h"
     35#include "presparm.h"                   // SetPresParams
    3536#include "fm3dll.h"
     37#include "wrappers.h"                   // xmalloc
     38#include "misc.h"                       // PostMsg
    3639#include "fortify.h"
    3740
  • TabularUnified trunk/dll/notify.h

    r1172 r1188  
     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(NOTIFY_H)
     16
     17#define NOTIFY_H
     18
    119BOOL AddNote(CHAR * note);
    220HWND DoNotify(char *text);
    321VOID EndNote(VOID);
    422VOID HideNote(VOID);
     23HWND Notify(char *text);
    524VOID NotifyError(CHAR * filename, APIRET error);
    625MRESULT EXPENTRY NotifyWndProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
    726VOID ShowNote(VOID);
    827
     28#endif  // NOTIFY_H
  • TabularUnified trunk/dll/objcnr.c

    r1163 r1188  
    3535#define INCL_LONGLONG
    3636
     37#include "fm3dll.h"
    3738#include "fm3dlg.h"
    3839#include "fm3str.h"
     
    4041#include "strutil.h"                    // GetPString
    4142#include "objcnr.h"
    42 #include "fm3dll.h"
     43#include "notify.h"                     // Notify
     44#include "wrappers.h"                   // xDosFindNext
    4345#include "select.h"                     // ExpandAll
    44 
     46#include "valid.h"                      // IsRoot
     47#include "misc.h"                       // PostMsg
    4548#include "fortify.h"
    4649
  • TabularUnified trunk/dll/timer.c

    r1163 r1188  
    2121#define INCL_LONGLONG                   // dircnrs.h
    2222
     23#include "fm3dll.h"
    2324#include "fm3str.h"
    2425#include "errutil.h"                    // Dos_Error...
    2526#include "strutil.h"                    // GetPString
    2627#include "timer.h"
    27 #include "fm3dll.h"
     28#include "misc.h"                       // PostMsg
    2829
    2930static PSZ pszSrcFile = __FILE__;
  • TabularUnified trunk/dll/viewer.h

    r1170 r1188  
    1717
    1818MRESULT EXPENTRY MLEEditorProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
     19HWND StartMLEEditor(HWND hwnd, INT flags, CHAR * filename, HWND hwndRestore);
    1920
    2021
Note: See TracChangeset for help on using the changeset viewer.