xremote_infoscreen.h 559 B

1234567891011121314151617181920
  1. #pragma once
  2. //#include "../xremote.h"
  3. #include <gui/view.h>
  4. #include "../helpers/xremote_custom_event.h"
  5. typedef struct XRemoteInfoscreen XRemoteInfoscreen;
  6. typedef void (*XRemoteInfoscreenCallback)(XRemoteCustomEvent event, void* context);
  7. void xremote_infoscreen_set_callback(
  8. XRemoteInfoscreen* xremote_infoscreen,
  9. XRemoteInfoscreenCallback callback,
  10. void* context);
  11. View* xremote_infoscreen_get_view(XRemoteInfoscreen* instance);
  12. XRemoteInfoscreen* xremote_infoscreen_alloc();
  13. void xremote_infoscreen_free(XRemoteInfoscreen* instance);