Changeset 1215 for trunk/dll


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

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

Location:
trunk/dll
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/worker.c

    r1181 r1215  
    4949
    5050#include "fm3dll.h"
     51#include "mainwnd2.h"                   // Data declaration(s)
     52#include "arccnrs.h"                    // Data declaration(s)
     53#include "init.h"                       // Data declaration(s)
     54#include "defview.h"                    // Data declaration(s)
     55#include "newview.h"                    // Data declarations
    5156#include "fm3dlg.h"
    5257#include "fm3str.h"
     
    8792#include "wrappers.h"                   // xfopen
    8893#include "fortify.h"
     94
     95// Data definitions
     96#pragma data_seg(GLOBAL2)
     97FILE *LogFileHandle;
    8998
    9099#pragma data_seg(DATA2)
  • trunk/dll/worker.h

    r1202 r1215  
    2020VOID MassAction(VOID * args);
    2121
     22// Data declarations
     23extern FILE *LogFileHandle;
     24
    2225#endif  // WORKER_H
  • trunk/dll/wrappers.c

    r1182 r1215  
    2929
    3030#include "fm3dll.h"
     31#include "init.h"                       // Data declaration(s)
    3132#include "wrappers.h"
    3233#include "fm3str.h"
     
    4041#include "fortify.h"                    // GetPString
    4142
     43// Data definitions
    4244static PSZ pszSrcFile = __FILE__;
     45
     46#pragma data_seg(GLOBAL1)
     47BOOL fNoLargeFileSupport;
    4348
    4449APIRET xDosFindFirst(PSZ pszFileSpec,
  • trunk/dll/wrappers.h

    r1202 r1215  
    5454PVOID xstrdup(PCSZ pszIn, PCSZ pszSrcFile, UINT uiLineNumber);
    5555
     56// Data declarations
     57extern BOOL fNoLargeFileSupport;
    5658
    5759#endif // WRAPPERS_H
Note: See TracChangeset for help on using the changeset viewer.