Ignore:
Timestamp:
Jul 29, 2007, 9:30:14 PM (17 years ago)
Author:
dai_9181
Message:

Selectステートメントのスケジュール機構をリファクタリング

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/include/NativeCode.h

    r245 r250  
    3333        LONG_PTR lpValue;
    3434        const ::UserProc *pUserProc;
     35        const ::DllProc *pDllProc;
    3536    };
    3637
     
    5859        , offset( offset )
    5960        , pUserProc( pUserProc )
     61    {
     62    }
     63    Schedule( const ::DllProc *pDllProc, long offest )
     64        : type( Schedule::UserProc )
     65        , offset( offset )
     66        , pDllProc( pDllProc )
    6067    {
    6168    }
     
    242249    }
    243250    void PutUserProcSchedule( const UserProc *pUserProc, bool isCall );
     251    void PutDllProcSchedule( const DllProc *pDllProc );
    244252    void Put( short s )
    245253    {
Note: See TracChangeset for help on using the changeset viewer.