doxygen docs: Fix warnings in Ecore_Common.h

This commit is contained in:
Xavi Artigas 2020-03-26 13:46:46 +01:00
parent 50f83d5d3a
commit 4204396176
3 changed files with 11 additions and 7 deletions

View File

@ -2732,16 +2732,12 @@ EAPI double ecore_throttle_get(void);
* @{
*/
/**
* @enum _Ecore_Animator_Source
* Defines the timing sources for animators.
*/
enum _Ecore_Animator_Source /* Timing sources for animators */
/** Defines the timing sources for animators. */
typedef enum
{
ECORE_ANIMATOR_SOURCE_TIMER, /**< The default system clock/timer based animator that ticks every "frametime" seconds */
ECORE_ANIMATOR_SOURCE_CUSTOM /**< A custom animator trigger that you need to call ecore_animator_custom_tick() to make it tick */
};
typedef enum _Ecore_Animator_Source Ecore_Animator_Source;
} Ecore_Animator_Source;
/**
* @typedef Ecore_Timeline_Cb Ecore_Timeline_Cb

View File

@ -100,6 +100,10 @@ EAPI int ecore_poller_poller_interval_get(const Ecore_Poller *obj);
* @{
*/
/**
* @struct Ecore_Animator
* Opaque handle to manage Ecore Animator objects.
*/
typedef struct _Ecore_Animator Ecore_Animator;
/**

View File

@ -4,6 +4,10 @@
#ifndef _ECORE_EXE_EO_CLASS_TYPE
#define _ECORE_EXE_EO_CLASS_TYPE
/**
* @struct Ecore_Exe
* Opaque handle to manage Ecore Exe objects.
*/
typedef Eo Ecore_Exe;
#endif