1
0
Fork 0

DBG: Fixed potential ambiguous function definition

This commit is contained in:
Duncan Ogilvie 2016-10-04 23:50:55 +02:00 committed by GitHub
parent 43701f57b1
commit 187250bd98
1 changed files with 2 additions and 2 deletions

View File

@ -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