mirror of
https://gitlab.com/Theopse/fbi-i18n-zh.git
synced 2025-04-06 03:58:02 +08:00
* Maintain list position after operations. * Show current target info in batch operations. * Fix freeze when suspending to the home menu during a threaded task. * Other miscellaneous fixes and clean-ups.
7 lines
511 B
C
7 lines
511 B
C
#pragma once
|
|
|
|
typedef struct ui_view_s ui_view;
|
|
|
|
void prompt_display(const char* name, const char* text, u32 rgba, bool option, void* data, void (*update)(ui_view* view, void* data),
|
|
void (*drawTop)(ui_view* view, void* data, float x1, float y1, float x2, float y2),
|
|
void (*onResponse)(ui_view* view, void* data, bool response)); |