New upstream version 19.0.3+dfsg1
This commit is contained in:
parent
3708b8e092
commit
1f1bbb3518
534 changed files with 13862 additions and 2459 deletions
|
|
@ -317,3 +317,22 @@ void obs_frontend_pop_ui_translation(void)
|
|||
if (callbacks_valid())
|
||||
c->obs_frontend_pop_ui_translation();
|
||||
}
|
||||
|
||||
void obs_frontend_set_streaming_service(obs_service_t *service)
|
||||
{
|
||||
if (callbacks_valid())
|
||||
c->obs_frontend_set_streaming_service(service);
|
||||
}
|
||||
|
||||
obs_service_t* obs_frontend_get_streaming_service(void)
|
||||
{
|
||||
return !!callbacks_valid()
|
||||
? c->obs_frontend_get_streaming_service()
|
||||
: nullptr;
|
||||
}
|
||||
|
||||
void obs_frontend_save_streaming_service(void)
|
||||
{
|
||||
if (callbacks_valid())
|
||||
c->obs_frontend_save_streaming_service();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue