efl/src/tests/eo/composite_objects/composite_objects_simple.h

19 lines
324 B
C
Raw Normal View History

#ifndef SIMPLE_H
#define SIMPLE_H
typedef struct
{
int a;
} Simple_Public_Data;
EAPI void simple_a_set(int a);
EAPI int simple_a_get(void);
extern const Eo_Event_Description _EV_A_CHANGED;
#define EV_A_CHANGED (&(_EV_A_CHANGED))
#define SIMPLE_CLASS simple_class_get()
const Eo_Class *simple_class_get(void);
#endif