| 300 | } |
| 301 | |
| 302 | static int host_ui_index(void *opaque, const char *root_path, const char *project_name) { |
| 303 | host_state_t *host = opaque; |
| 304 | return host && host->application |
| 305 | ? cbm_daemon_application_index(host->application, project_name ? project_name : "", |
| 306 | root_path) |
| 307 | : -1; |
| 308 | } |
| 309 | |
| 310 | static bool host_ui_mutation_begin(void *opaque, const char *project) { |
| 311 | host_state_t *host = opaque; |
nothing calls this directly
no test coverage detected