logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

tickit_pen_ref, tickit_pen_unref - adjust the refcount of a pen

Description

tickit_pen_ref()  increments the stored refcount of the given pen instance by one. It returns the pointer
       argument itself, so it is useful for chaining.

       tickit_pen_unref() decrements the stored refcount of the given pen instance by one. If the refcount drops
       to zero, the instance is destroyed. This will release any resources controlled by it and unbind  all  the
       bound event handlers, causing handlers to be invoked with the TICKIT_EV_DESTROY flag if appropriate.

Name

       tickit_pen_ref, tickit_pen_unref - adjust the refcount of a pen

Return Value

tickit_pen_ref() returns a pen instance pointer. tickit_pen_unref() returns no value.

See Also

tickit_pen_new(3), tickit_pen(7), tickit(7)

                                                                                               TICKIT_PEN_REF(3)

Synopsis

#include<tickit.h>TickitPen*tickit_pen_ref(TickitPen*pen);voidtickit_pen_unref(TickitPen*pen);

       Link with -ltickit.

See Also