mirror of
https://github.com/libretro/RetroArch
synced 2025-03-01 07:13:35 +00:00
Add ui_companion_driver_get_browser_window_ptr
This commit is contained in:
parent
8088df5f09
commit
82ae93e348
@ -186,6 +186,14 @@ const ui_window_t *ui_companion_driver_get_window_ptr(void)
|
||||
return ui->window;
|
||||
}
|
||||
|
||||
const ui_browser_window_t *ui_companion_driver_get_browser_window_ptr(void)
|
||||
{
|
||||
const ui_companion_driver_t *ui = ui_companion_get_ptr();
|
||||
if (!ui)
|
||||
return NULL;
|
||||
return ui->browser_window;
|
||||
}
|
||||
|
||||
const ui_application_t *ui_companion_driver_get_application_ptr(void)
|
||||
{
|
||||
const ui_companion_driver_t *ui = ui_companion_get_ptr();
|
||||
|
@ -191,6 +191,8 @@ void ui_companion_driver_free(void);
|
||||
|
||||
const ui_msg_window_t *ui_companion_driver_get_msg_window_ptr(void);
|
||||
|
||||
const ui_browser_window_t *ui_companion_driver_get_browser_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