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/Debug.cpp

    r265 r266  
    350350    char temporary[1024];
    351351
    352     extern BOOL bDll;
    353352    char ExeFilePathForDll[MAX_PATH];
    354     if(bDll){
     353    if( compiler.IsDll() ){
    355354        //DLLをデバッグする場合
    356355        extern char szDebugExeForDll[1024];
     
    428427        memset(&si,0,sizeof(STARTUPINFO));
    429428        si.cb=sizeof(STARTUPINFO);
    430         if(!bDll){
     429        if( !compiler.IsDll() ){
    431430            //EXEファイルをデバッグ
    432431            CreateProcess(OutputFileName,szDebugCmdLine,NULL,NULL,0,NORMAL_PRIORITY_CLASS|DEBUG_ONLY_THIS_PROCESS,NULL,NULL,&si,&pi);
Note: See TracChangeset for help on using the changeset viewer.