First page Back Continue Last page Graphics
object oriented c programming
xine is written in plain (ansi) c
but still object oriented:
typedef struct o_s o_t;
struct o_s {
int (*method_a)(o_t *this,...);
int a, b; /* <-- attributes */
};
o_t *create_object (params);