|
Auto Debug On Line Help |
|
enableAllBreakpointOfDllThe enableAllBreakpointOfDll function to Enable or disable all breakpoints of the dll with Auto Debug System, so user can to change the monitor result dynamic. void enableAllBreakpointOfDll( BSTR szDll, // Dll Name BOOL bEnable // Enable/Disable ); Parameters
Return ValuesNo return value. ExamplesVBscript Example: sub main
callEnableFunction
startProcess "Notepad.exe"
end sub
sub callEnableFunction
enableAllBreakpointOfDll "comdlg32.dll", true
end sub
JavaScript Example: function main(){
callEnableFunction();
startProcess("Notepad.exe");
}
function callEnableFunction(){
enableAllBreakpointOfDll("comdlg32.dll", true);
}
RequirementsAuto Debug for Windows: Unsupport. See AlsoScript Information Overview, Script Functions, enableBreakpoint |
| Copyright c 2003-2025, www.autodebug.com All Rights Reserved |