rename project object_by_name_functions with ikarus_project prefix
Signed-off-by: Folling <mail@folling.io>
This commit is contained in:
parent
f7361c657e
commit
4386903e59
1 changed files with 9 additions and 4 deletions
|
|
@ -135,7 +135,7 @@ IKA_API size_t ikarus_project_get_blueprint_count(IkarusProject * project, Ikaru
|
||||||
/// \pre \li Must not be empty.
|
/// \pre \li Must not be empty.
|
||||||
/// \param error_out \see errors.h
|
/// \param error_out \see errors.h
|
||||||
/// \return The entity with the given name or null if none was found.
|
/// \return The entity with the given name or null if none was found.
|
||||||
IKA_API struct IkarusEntity * get_entity_by_name(IkarusProject * project, char const * name, IkarusErrorData * error_out);
|
IKA_API struct IkarusEntity * ikarus_project_get_entity_by_name(IkarusProject * project, char const * name, IkarusErrorData * error_out);
|
||||||
|
|
||||||
/// \brief Finds a property by a given name.
|
/// \brief Finds a property by a given name.
|
||||||
/// \param project The project to search.
|
/// \param project The project to search.
|
||||||
|
|
@ -150,8 +150,12 @@ IKA_API struct IkarusEntity * get_entity_by_name(IkarusProject * project, char c
|
||||||
/// \pre \li Must not be empty.
|
/// \pre \li Must not be empty.
|
||||||
/// \param error_out \see errors.h
|
/// \param error_out \see errors.h
|
||||||
/// \return The property with the given name or null if none was found.
|
/// \return The property with the given name or null if none was found.
|
||||||
IKA_API struct IkarusProperty *
|
IKA_API struct IkarusProperty * ikarus_project_get_property_by_name_and_scope(
|
||||||
get_property_by_name_and_scope(IkarusProject * project, struct IkarusPropertyScope * scope, char const * name, IkarusErrorData * error_out);
|
IkarusProject * project,
|
||||||
|
struct IkarusPropertyScope * scope,
|
||||||
|
char const * name,
|
||||||
|
IkarusErrorData * error_out
|
||||||
|
);
|
||||||
|
|
||||||
/// \brief Finds a blueprint by a given name.
|
/// \brief Finds a blueprint by a given name.
|
||||||
/// \param project The project to search.
|
/// \param project The project to search.
|
||||||
|
|
@ -162,7 +166,8 @@ get_property_by_name_and_scope(IkarusProject * project, struct IkarusPropertySco
|
||||||
/// \pre \li Must not be empty.
|
/// \pre \li Must not be empty.
|
||||||
/// \param error_out \see errors.h
|
/// \param error_out \see errors.h
|
||||||
/// \return The blueprint with the given name or null if none was found.
|
/// \return The blueprint with the given name or null if none was found.
|
||||||
IKA_API struct IkarusBlueprint * get_blueprints_by_name(IkarusProject * project, char const * name, IkarusErrorData * error_out);
|
IKA_API struct IkarusBlueprint *
|
||||||
|
ikarus_project_get_blueprint_by_name(IkarusProject * project, char const * name, IkarusErrorData * error_out);
|
||||||
|
|
||||||
IKARUS_END_HEADER
|
IKARUS_END_HEADER
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue