MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / write_config_file

Function write_config_file

gtk/src/presets.c:792–802  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

790}
791
792static void
793write_config_file(const gchar *name, GhbValue *dict)
794{
795 gchar *config, *path;
796
797 config = ghb_get_user_config_dir(NULL);
798 path = g_strdup_printf ("%s/%s", config, name);
799 g_free(config);
800 ghb_json_write_file(path, dict);
801 g_free(path);
802}
803
804void
805ghb_write_settings_file(const gchar *path, GhbValue *dict)

Callers 2

ghb_save_queueFunction · 0.85
delayed_store_prefsFunction · 0.85

Calls 1

ghb_get_user_config_dirFunction · 0.85

Tested by

no test coverage detected