Ignore:
Timestamp:
Jul 12, 2007, 2:58:26 AM (17 years ago)
Author:
dai_9181
Message:

コード全体のリファクタリングを実施

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/PESchedule.h

    r182 r206  
    11#pragma once
    22
    3 #include <jenga/include/smoothie/Procedure.h>
     3
     4class UserProc;
     5class DllProc;
     6
    47
    58///////////////////////
     
    6568class CImportAddrSchedule:public CSchedule{
    6669public:
    67     DllProc **ppdi;
     70    const DllProc **ppdi;
    6871
    6972    CImportAddrSchedule();
    7073    ~CImportAddrSchedule();
    7174
    72     void add(DllProc *pDllProc);
     75    void add(const DllProc *pDllProc);
    7376};
    7477extern CImportAddrSchedule *pobj_ImportAddrSchedule;
     
    8184class CSubAddrSchedule:public CSchedule{
    8285public:
    83     UserProc **ppsi;
     86    const UserProc **ppsi;
    8487    BOOL *pbCall;
    8588
     
    8790    ~CSubAddrSchedule();
    8891
    89     void add(UserProc *pUserProc,BOOL bCall);
     92    void add(const UserProc *pUserProc,BOOL bCall);
    9093};
    9194extern CSubAddrSchedule *pobj_SubAddrSchedule;
Note: See TracChangeset for help on using the changeset viewer.