DBG: Fixed potential ambiguous function definition
This commit is contained in:
parent
43701f57b1
commit
187250bd98
|
@ -22,11 +22,11 @@ namespace Script
|
|||
SCRIPT_EXPORT bool GetInfo(duint addr, FunctionInfo* info);
|
||||
SCRIPT_EXPORT bool Overlaps(duint start, duint end);
|
||||
SCRIPT_EXPORT bool Delete(duint address);
|
||||
SCRIPT_EXPORT void DeleteRange(duint start, duint end, bool deleteManual = false);
|
||||
SCRIPT_EXPORT void DeleteRange(duint start, duint end, bool deleteManual);
|
||||
SCRIPT_EXPORT void DeleteRange(duint start, duint end);
|
||||
SCRIPT_EXPORT void Clear();
|
||||
SCRIPT_EXPORT bool GetList(ListOf(FunctionInfo) list); //caller has the responsibility to free the list
|
||||
}; //Function
|
||||
}; //Script
|
||||
|
||||
#endif //_SCRIPTAPI_FUNCTION_H
|
||||
#endif //_SCRIPTAPI_FUNCTION_H
|
||||
|
|
Loading…
Reference in New Issue