Changeset 75 in dev for BasicCompiler_Common/PESchedule.h


Ignore:
Timestamp:
Mar 20, 2007, 4:36:16 AM (17 years ago)
Author:
dai_9181
Message:

TYPEINFO→Typeへのリファクタリングを実施。64bitはほぼ完了。32bitが全般的に未完成。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BasicCompiler_Common/PESchedule.h

    r73 r75  
    6363class CImportAddrSchedule:public CSchedule{
    6464public:
    65     DECLAREINFO **ppdi;
     65    DllProc **ppdi;
    6666
    6767    CImportAddrSchedule();
    6868    ~CImportAddrSchedule();
    6969
    70     void add(DECLAREINFO *pdi);
     70    void add(DllProc *pDllProc);
    7171};
    7272extern CImportAddrSchedule *pobj_ImportAddrSchedule;
     
    7979class CSubAddrSchedule:public CSchedule{
    8080public:
    81     SubInfo **ppsi;
     81    UserProc **ppsi;
    8282    BOOL *pbCall;
    8383
     
    8585    ~CSubAddrSchedule();
    8686
    87     void add(SubInfo *psi,BOOL bCall);
     87    void add(UserProc *pUserProc,BOOL bCall);
    8888};
    8989extern CSubAddrSchedule *pobj_SubAddrSchedule;
Note: See TracChangeset for help on using the changeset viewer.