Changeset 460 in dev for trunk/ab5.0/abdev/BasicCompiler64/Compile_CallProc.cpp
- Timestamp:
- Mar 23, 2008, 10:43:50 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler64/Compile_CallProc.cpp
r436 r460 26 26 bool Opcode_CallProcPtr( const char *variable, const char *lpszParms,ProcPointer *pProcPointer) 27 27 { 28 extern BOOL bDebugCompile;29 28 extern BOOL bDebugSupportProc; 30 if(bDebugCompile&&bDebugSupportProc==0) 29 if( compiler.IsDebug() && bDebugSupportProc == 0 ) 30 { 31 31 Call_DebugSys_SaveContext(); 32 } 32 33 33 34 … … 462 463 bool Opcode_CallDllProc( const char *lpszParms, DllProc *pDllProc ){ 463 464 464 extern BOOL bDebugCompile;465 465 extern BOOL bDebugSupportProc; 466 if(bDebugCompile&&bDebugSupportProc==0&& pDllProc->GetName() != "DebugBreak" ){ 466 if( compiler.IsDebug() && bDebugSupportProc == 0 && pDllProc->GetName() != "DebugBreak" ) 467 { 467 468 Call_DebugSys_SaveContext(); 468 469 } … … 524 525 void Opcode_CallDelegate( const Delegate &dg, const char *methodPtrValueStr, const char *objPtrValueStr, const char *params ) 525 526 { 526 extern BOOL bDebugCompile;527 527 extern BOOL bDebugSupportProc; 528 if(bDebugCompile&&bDebugSupportProc==0) 528 if( compiler.IsDebug() && bDebugSupportProc == 0 ) 529 { 529 530 Call_DebugSys_SaveContext(); 531 } 530 532 531 533
Note:
See TracChangeset
for help on using the changeset viewer.