This section provides some example command lines. For each example we'll break it down, argument by argument so that you can see how the command line works.
In all these examples the executable to run is debugBreakChecker.exe. You will need to provide the full path to debugBreakChecker.exe, or add the path to debugBreakChecker install directory to your $PATH.
debugBreakChecker.exe /dir e:\om\c\ /output e:\test.txt
/dir e:\om\c\
Scan the directory e:\om\c\
/output e:\test.txt
Write the output to e:\test.txt. If there are no functions detected there will be no output file.
Example 2
debugBreakChecker.exe /dir e:\om\c\ /output e:\test.txt /removeAllFunctions /addFunction myDebuggingFunction
/dir e:\om\c\
Scan the directory e:\om\c\
/output e:\test.txt
Write the output to e:\test.txt. If there are no functions detected there will be no output file.
/removeAllFunctions
Remove all existing functions definitions.
/addFunction myDebuggingFunction
Add one function definition so that Debug Break Checker is checking for just the function myDebuggingFunction
debugBreakChecker.exe /loadSettings e:\tests\test1\settings.tlc /output e:\test.txt
/loadSettings e:\tests\test1\settings.tlc
Load settings from the file e:\tests\test1\settings.tlc.
/output e:\test.txt
Write the output to e:\test.txt. If there are no errors there will be no output file.
debugBreakChecker.exe /loadSettings e:\tests\test1\settings.tlc /output e:\test.txt /dir e:\om\c\
/loadSettings e:\tests\test1\settings.tlc
Load settings from the file e:\tests\test1\settings.tlc.
/output e:\test.txt
Write the output to e:\test.txt. If there are no errors there will be no output file.
/dir e:\om\c\
Scan the directory e:\om\c\