Package ghidra.app.cmd.function
Class CreateExternalFunctionCmd
java.lang.Object
ghidra.app.cmd.function.CreateExternalFunctionCmd
- 
Constructor SummaryConstructorsConstructorDescriptionCreateExternalFunctionCmd(Namespace externalParentNamespace, String name, Address address, SourceType source) Create an external function in the specified external namespace.CreateExternalFunctionCmd(Symbol extSymbol) Create an external functionCreateExternalFunctionCmd(String libraryName, String name, Address address, SourceType source) Create an external function
- 
Method SummaryModifier and TypeMethodDescriptionbooleanApplies the command to the given domain object.getName()Returns the name of this command.Returns the status message indicating the status of the command.
- 
Constructor Details- 
CreateExternalFunctionCmdCreate an external function- Parameters:
- extSymbol- a non-function external symbol
 
- 
CreateExternalFunctionCmdpublic CreateExternalFunctionCmd(String libraryName, String name, Address address, SourceType source) Create an external function- Parameters:
- libraryName- library name, if null the UNKNOWN library will be used
- name- function name (required)
- address- the address of the function's entry point in the external library (optional)
- source- the source type for this external function
 
- 
CreateExternalFunctionCmdpublic CreateExternalFunctionCmd(Namespace externalParentNamespace, String name, Address address, SourceType source) Create an external function in the specified external namespace.- Parameters:
- externalParentNamespace- the external parent namespace where the named function should be created (required)
- name- function name (required)
- address- the address of the function's entry point in the external library (optional)
- source- the source type for this external function
 
 
- 
- 
Method Details- 
applyToDescription copied from interface:CommandApplies the command to the given domain object.
- 
getStatusMsgDescription copied from interface:CommandReturns the status message indicating the status of the command.- Specified by:
- getStatusMsgin interface- Command<Program>
- Returns:
- reason for failure, or null if the status of the command was successful
 
- 
getNameDescription copied from interface:CommandReturns the name of this command.
- 
getExtSymbol
 
-