Changeset 266 in dev for trunk/abdev/BasicCompiler_Common/Debug.cpp
- Timestamp:
- Aug 7, 2007, 4:14:06 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/Debug.cpp
r265 r266 350 350 char temporary[1024]; 351 351 352 extern BOOL bDll;353 352 char ExeFilePathForDll[MAX_PATH]; 354 if( bDll){353 if( compiler.IsDll() ){ 355 354 //DLLをデバッグする場合 356 355 extern char szDebugExeForDll[1024]; … … 428 427 memset(&si,0,sizeof(STARTUPINFO)); 429 428 si.cb=sizeof(STARTUPINFO); 430 if( !bDll){429 if( !compiler.IsDll() ){ 431 430 //EXEファイルをデバッグ 432 431 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.