mirror of
https://github.com/libretro/RetroArch
synced 2025-02-06 00:39:53 +00:00
Create ui_companion_driver_get_msg_window_ptr
This commit is contained in:
parent
aa81c1d82f
commit
3c7fafe9a3
@ -170,6 +170,14 @@ void ui_companion_driver_free(void)
|
||||
ui_companion = NULL;
|
||||
}
|
||||
|
||||
const ui_msg_window_t *ui_companion_driver_get_msg_window_ptr(void)
|
||||
{
|
||||
const ui_companion_driver_t *ui = ui_companion_get_ptr();
|
||||
if (!ui)
|
||||
return NULL;
|
||||
return ui->msg_window;
|
||||
}
|
||||
|
||||
const ui_window_t *ui_companion_driver_get_window_ptr(void)
|
||||
{
|
||||
const ui_companion_driver_t *ui = ui_companion_get_ptr();
|
||||
|
@ -166,6 +166,8 @@ void ui_companion_driver_toggle(void);
|
||||
|
||||
void ui_companion_driver_free(void);
|
||||
|
||||
const ui_msg_window_t *ui_companion_driver_get_msg_window_ptr(void);
|
||||
|
||||
const ui_window_t *ui_companion_driver_get_window_ptr(void);
|
||||
|
||||
const ui_application_t *ui_companion_driver_get_application_ptr(void);
|
||||
|
Loading…
x
Reference in New Issue
Block a user