This function displays the list of the functions of the active project.
[Specification format]
project.GetFunctionList(fileName = "")
|
[Argument(s)]
|
|
fileName
|
Specify the full path of the file that the list of the functions are displayed (default: not specified).
|
[Return value]
List of function information (see the FunctionInfo property for detail)
[Detailed description]
- | This function displays the list of the functions of the active project shown by the following format. |
function-name return-value-type start-address end-address file-name
|
- | When fileName is specified, only the functions included in the specified file are displayed. |
- | When fileName is not specified, then all the functions will be displayed. |
Caution | This function uses the information displayed in the list of functions for program analysis. |
[Example of use]
>>>project.GetFunctionList()
func1 int 0x00200 0x00224 C:\project\src\test1.c
func2 int 0x00225 0x002ff C:\project\src\test2.c
>>>project.GetFunctionList("C:/project/src/test1.c")
func1 int 0x00200 0x00224 C:\project\src\test1.c
>>>
|