diff options
Diffstat (limited to 'code/fe310/eos/eve/screen/form.h')
-rw-r--r-- | code/fe310/eos/eve/screen/form.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/code/fe310/eos/eve/screen/form.h b/code/fe310/eos/eve/screen/form.h index 3edafe8..e667fc8 100644 --- a/code/fe310/eos/eve/screen/form.h +++ b/code/fe310/eos/eve/screen/form.h @@ -9,6 +9,6 @@ typedef struct EVEForm { uint16_t widget_size; } EVEForm; -int eve_form_init(EVEForm *form, EVETile *tile, eve_page_open_t open, eve_page_close_t close, struct EVEWidget *widget, uint16_t widget_size); -int eve_form_touch(EVECanvas *c, uint8_t tag0, int touch_idx); -uint8_t eve_form_draw(EVECanvas *c, uint8_t tag0); +int eve_form_init(EVEForm *form, struct EVEWidget *widget, uint16_t widget_size, eve_page_open_t open, eve_page_close_t close, EVEWindow *window); +int eve_form_touch(EVEView *v, uint8_t tag0, int touch_idx); +uint8_t eve_form_draw(EVEView *v, uint8_t tag0); |