| 1143 | } |
| 1144 | |
| 1145 | const char * |
| 1146 | ghb_get_scan_source (void) |
| 1147 | { |
| 1148 | GhbApplication *app = GHB_APPLICATION_DEFAULT; |
| 1149 | g_return_val_if_fail(GHB_IS_APPLICATION(app), ""); |
| 1150 | g_return_val_if_fail(app->ud != NULL, ""); |
| 1151 | |
| 1152 | return ghb_dict_get_string(app->ud->settings, "source"); |
| 1153 | |
| 1154 | } |
| 1155 | |
| 1156 | void |
| 1157 | ghb_set_scan_source (const char *source) |
no test coverage detected