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/BasicCompiler32/Compile_ProcOp.cpp

    r265 r266  
    2828        ////////////////////////////////////////
    2929
    30         extern BOOL bDll;
    31         if(!bDll){
     30        if( !compiler.IsDll() ){
    3231            //ret
    3332            compiler.codeGenerator.op_ret();
     
    757756}
    758757void CompileLocal(){
    759     extern BOOL bDll;
    760     if(bDll){
     758    if( compiler.IsDll() ){
    761759        //DLLの場合はグローバル変数を初期化するための関数を一番初めにコンパイルする
    762760        const UserProc *pUserProc=GetSubHash("_System_InitDllGlobalVariables");
Note: See TracChangeset for help on using the changeset viewer.