Ignore:
Timestamp:
Aug 7, 2007, 4:14:06 AM (17 years ago)
Author:
dai_9181
Message:

BasicSourceのシリアライズがうまくいっていない

File:
1 edited

Legend:

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

    r253 r266  
    11#include "stdafx.h"
     2
     3#include <Compiler.h>
    24
    35#include "../BasicCompiler_Common/common.h"
     
    5557
    5658void CReloc::AddSchedule_CodeSection(DWORD addr){
    57     extern BOOL bDll;
    58     if(!bDll) return;
     59    if( !compiler.IsDll() ) return;
    5960
    6061    codeSectionAddresses.push_back( addr );
    6162}
    6263void CReloc::AddSchedule_DataSection(DWORD addr){
    63     extern BOOL bDll;
    64     if(!bDll) return;
     64    if( !compiler.IsDll() ) return;
    6565
    6666    dataSectionAddresses.push_back( addr );
     
    6868
    6969void CReloc::__add(DWORD addr){
    70     extern BOOL bDll;
    71     if(!bDll) return;
     70    if( !compiler.IsDll() ) return;
    7271
    7372    BOOL sw;
Note: See TracChangeset for help on using the changeset viewer.