comparison libmlk-core/mlk/core/drawable-stack.h @ 548:75944708c55c

core: doxygenize panic
author David Demelier <markand@malikania.fr>
date Mon, 06 Mar 2023 20:06:00 +0100
parents 8b603a7e048a
children
comparison
equal deleted inserted replaced
547:c7664b679a95 548:75944708c55c
72 * The object is inserted as-is and ownership is left to the caller. 72 * The object is inserted as-is and ownership is left to the caller.
73 * 73 *
74 * \pre stack != NULL 74 * \pre stack != NULL
75 * \param stack the drawable stack 75 * \param stack the drawable stack
76 * \param drawable the object to append 76 * \param drawable the object to append
77 * \return 0 on success or ::MLK_ERR_NO_MEM if full. 77 * \return 0 on success or -1 on error
78 */ 78 */
79 int 79 int
80 mlk_drawable_stack_add(struct mlk_drawable_stack *stack, 80 mlk_drawable_stack_add(struct mlk_drawable_stack *stack,
81 struct mlk_drawable *drawable); 81 struct mlk_drawable *drawable);
82 82