Changeset 1208 for trunk/dll/grep.c


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

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/grep.c

    r1179 r1208  
    4343
    4444#include "fm3dll.h"
     45#include "notebook.h"                   // Data declaration(s)
     46#include "newview.h"                    // Data declarations
    4547#include "fm3str.h"
    4648#include "grep.h"
     
    5961#include "misc.h"                       // PostMsg
    6062#include "fortify.h"
    61 
    62 #pragma data_seg(DATA2)
    63 
    64 static PSZ pszSrcFile = __FILE__;
    6563
    6664static VOID DoAllSubdirs(GREP *grep,
     
    9795        ((year%400)==0))
    9896
     97// Data definitions
     98#pragma data_seg(DATA2)
     99static PSZ pszSrcFile = __FILE__;
    99100static INT monthdays[12] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
     101
     102#pragma data_seg(GLOBAL1)
     103HWND hwndStatus;
     104
    100105
    101106ULONG SecsSince1980(FDATE *date, FTIME *time)
Note: See TracChangeset for help on using the changeset viewer.