From a289581579f9ace8c101fbc2f17553e09e4fa05c Mon Sep 17 00:00:00 2001 From: Exeldro Date: Fri, 13 Sep 2024 09:49:11 +0200 Subject: [PATCH] docs: Add obs_frontend_get_user_config --- docs/sphinx/reference-frontend-api.rst | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/sphinx/reference-frontend-api.rst b/docs/sphinx/reference-frontend-api.rst index 5e95b4c09..53391aeaa 100644 --- a/docs/sphinx/reference-frontend-api.rst +++ b/docs/sphinx/reference-frontend-api.rst @@ -736,12 +736,29 @@ Functions --------------------------------------- +.. deprecated:: 31.0 .. function:: config_t *obs_frontend_get_global_config(void) :return: The config_t* associated with the global config (global.ini) --------------------------------------- +.. function:: config_t *obs_frontend_get_app_config(void) + + :return: The config_t* associated with system-wide settings (global.ini) + + .. versionadded:: 31.0 + +--------------------------------------- + +.. function:: config_t *obs_frontend_get_user_config(void) + + :return: The config_t* associated with user settings (user.ini) + + .. versionadded:: 31.0 + +--------------------------------------- + .. function:: void obs_frontend_set_streaming_service(obs_service_t *service) Sets the current streaming service to stream with.