diff --git a/include/ikarus/persistence/project.h b/include/ikarus/persistence/project.h index d0116a4..acd113a 100644 --- a/include/ikarus/persistence/project.h +++ b/include/ikarus/persistence/project.h @@ -135,7 +135,7 @@ IKA_API size_t ikarus_project_get_blueprint_count(IkarusProject * project, Ikaru /// \pre \li Must not be empty. /// \param error_out \see errors.h /// \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. /// \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. /// \param error_out \see errors.h /// \return The property with the given name or null if none was found. -IKA_API struct IkarusProperty * -get_property_by_name_and_scope(IkarusProject * project, struct IkarusPropertyScope * scope, char const * name, IkarusErrorData * error_out); +IKA_API struct IkarusProperty * ikarus_project_get_property_by_name_and_scope( + IkarusProject * project, + struct IkarusPropertyScope * scope, + char const * name, + IkarusErrorData * error_out +); /// \brief Finds a blueprint by a given name. /// \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. /// \param error_out \see errors.h /// \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