Changeset 1207


Ignore:
Timestamp:
Sep 13, 2008, 8:49:41 AM (17 years ago)
Author:
John Small
Message:

Ticket 187: Move data declarations/definitions out of fm3dll.h

Location:
trunk/dll
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/dll/draglist.c

    r1181 r1207  
    3535
    3636#include "fm3dll.h"
     37#include "info.h"                       // Data declaration(s)
     38#include "init.h"                       // Data declaration(s)
     39#include "newview.h"                    // Data declarations
    3740#include "errutil.h"                    // Dos_Error...
    3841#include "draglist.h"
     
    4346#include "fortify.h"
    4447
     48// Data definitions
    4549static PSZ pszSrcFile = __FILE__;
     50
     51#pragma data_seg(GLOBAL1)
     52HPOINTER hptrDir;
     53HPOINTER hptrFile;
     54HPOINTER hptrLast;
     55
     56#pragma data_seg(GLOBAL2)
     57CHAR *DRMDRFLIST;
    4658
    4759/**
  • TabularUnified trunk/dll/draglist.h

    r1196 r1207  
    2222BOOL PickUp(HWND hwndCnr, HWND hwndObj, PCNRDRAGINIT pcd);
    2323
     24// Data declarations
     25extern CHAR *DRMDRFLIST;
     26extern HPOINTER hptrDir;
     27extern HPOINTER hptrFile;
     28extern HPOINTER hptrLast;
    2429
    2530#endif // DRAGLIST_H
  • TabularUnified trunk/dll/droplist.c

    r1182 r1207  
    3131
    3232#include "fm3dll.h"
     33#include "avl.h"                        // Data declaration(s)
     34#include "init.h"                       // Data declaration(s)
    3335#include "fm3str.h"
    3436#include "errutil.h"                    // Dos_Error...
  • TabularUnified trunk/dll/eas.c

    r1179 r1207  
    3636
    3737#include "fm3dll.h"
     38#include "notebook.h"                   // Data declaration(s)
     39#include "info.h"                       // Data declaration(s)
     40#include "init.h"                       // Data declaration(s)
     41#include "mainwnd.h"                    // Data declaration(s)
     42#include "newview.h"                    // Data declarations
    3843#include "fm3dlg.h"
    3944#include "fm3str.h"
  • TabularUnified trunk/dll/extract.c

    r1179 r1207  
    2626
    2727#include "fm3dll.h"
     28#include "init.h"                       // Data declaration(s)
     29#include "arccnrs.h"                    // Data declaration(s)
     30#include "notebook.h"                   // Data declaration(s)
     31#include "mainwnd.h"                    // Data declaration(s)
    2832#include "fm3dlg.h"
    2933#include "fm3str.h"
  • TabularUnified trunk/dll/filldir.c

    r1182 r1207  
    6464
    6565#include "fm3dll.h"
     66#include "draglist.h"                   // Data declaration(s)
     67#include "treecnr.h"                    // Data declaration(s)
     68#include "info.h"                       // Data declaration(s)
     69#include "newview.h"                    // Data declaration(s)
    6670#include "fm3str.h"
    6771#include "filldir.h"
     
    8084#include "commafmt.h"                   // CommaFmtULL
    8185#include "wrappers.h"                   // xDosFindNext
    82 
     86#include "init.h"                       // GetTidForWindow
     87
     88// Data definitions
    8389static PSZ pszSrcFile = __FILE__;
     90static BOOL fFirstTime;
     91
     92#pragma data_seg(GLOBAL1)
     93HPOINTER hptrEnv;
     94HPOINTER hptrHidden;
     95HPOINTER hptrReadonly;
     96HPOINTER hptrSystem;
     97
     98#pragma data_seg(GLOBAL2)
     99CHAR *FM3Tools;
     100CHAR *WPProgram;
    84101
    85102/**
  • TabularUnified trunk/dll/filldir.h

    r1196 r1207  
    5050INT RemoveCnrItems(HWND hwnd, PCNRITEM pci, USHORT usCnt, USHORT usFlags);
    5151
     52// Data declarations
     53extern CHAR *FM3Tools;
     54extern CHAR *WPProgram;
     55extern HPOINTER hptrEnv;
     56extern HPOINTER hptrHidden;
     57extern HPOINTER hptrReadonly;
     58extern HPOINTER hptrSystem;
     59
    5260#endif // FILLDIR_H
  • TabularUnified trunk/dll/filter.c

    r1185 r1207  
    2929
    3030#include "fm3dll.h"
     31#include "arccnrs.h"                    // Data declaration(s)
     32#include "notebook.h"                   // Data declaration(s)
     33#include "init.h"                       // Data declaration(s)
    3134#include "fm3dlg.h"
    3235#include "fm3str.h"
  • TabularUnified trunk/dll/flesh.c

    r1177 r1207  
    3333
    3434#include "fm3dll.h"
     35#include "draglist.h"                   // Data declaration(s)
     36#include "notebook.h"                   // Data declaration(s)
     37#include "info.h"                       // Data declaration(s)
     38#include "init.h"                       // Data declaration(s)
     39#include "mainwnd.h"                    // Data declaration(s)
    3540#include "fm3str.h"
    3641#include "filldir.h"                    // FileAttrToString...
     
    4449#include "wrappers.h"                   // xfree
    4550
     51// Data definitions
    4652#pragma data_seg(DATA1)
    4753
    4854static PSZ pszSrcFile = __FILE__;
     55
     56#pragma data_seg(GLOBAL1)
     57ULONG NoBrokenNotify;
     58BOOL fFilesInTree;
    4959
    5060BOOL FleshEnv(HWND hwndCnr, PCNRITEM pciParent)
  • TabularUnified trunk/dll/flesh.h

    r1197 r1207  
    2121BOOL UnFlesh(HWND hwndCnr, PCNRITEM pciParent);
    2222
     23// Data declarations
     24extern ULONG NoBrokenNotify;
     25extern BOOL fFilesInTree;
    2326
    2427#endif // FLESH_H
Note: See TracChangeset for help on using the changeset viewer.