1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef UPEM_MORPHING_BUTTON #define UPEM_MORPHING_BUTTON /** * File: button.h */ typedef struct { Component component; } Button; void button_init(Button *button, char *text); void button_free(Button *button); #endif