| 1234567891011121314151617181920 |
- #pragma once
- //#include "../xremote.h"
- #include <gui/view.h>
- #include "../helpers/xremote_custom_event.h"
- typedef struct XRemoteInfoscreen XRemoteInfoscreen;
- typedef void (*XRemoteInfoscreenCallback)(XRemoteCustomEvent event, void* context);
- void xremote_infoscreen_set_callback(
- XRemoteInfoscreen* xremote_infoscreen,
- XRemoteInfoscreenCallback callback,
- void* context);
- View* xremote_infoscreen_get_view(XRemoteInfoscreen* instance);
- XRemoteInfoscreen* xremote_infoscreen_alloc();
- void xremote_infoscreen_free(XRemoteInfoscreen* instance);
|