enlightenment/src/bin/e_comp.h

26 lines
507 B
C
Raw Normal View History

#ifdef E_TYPEDEFS
typedef struct _E_Comp E_Comp;
typedef struct _E_Comp_Win E_Comp_Win;
typedef struct _E_Comp_Zone E_Comp_Zone;
#else
#ifndef E_MOD_COMP_H
#define E_MOD_COMP_H
typedef enum
{
E_COMP_ENGINE_NONE = 0,
E_COMP_ENGINE_SW = 1,
E_COMP_ENGINE_GL = 2
} E_Comp_Engine;
EINTERN Eina_Bool e_comp_init(void);
EINTERN int e_comp_shutdown(void);
EAPI int e_comp_internal_save(void);
EAPI E_Comp_Config *e_comp_config_get(void);
EAPI void e_comp_shadows_reset(void);
#endif
#endif