61 lines
2.3 KiB
C
61 lines
2.3 KiB
C
/******************************************************************************
|
|
Copyright (C) 2019 by Dillon Pentz <dillon@vodbox.io>
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
******************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "util/c99defs.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef void (*obs_missing_file_cb)(void *src, const char *new_path,
|
|
void *data);
|
|
|
|
struct obs_missing_file;
|
|
struct obs_missing_files;
|
|
typedef struct obs_missing_file obs_missing_file_t;
|
|
typedef struct obs_missing_files obs_missing_files_t;
|
|
|
|
enum obs_missing_file_src { OBS_MISSING_FILE_SOURCE, OBS_MISSING_FILE_SCRIPT };
|
|
|
|
EXPORT obs_missing_files_t *obs_missing_files_create();
|
|
EXPORT obs_missing_file_t *obs_missing_file_create(const char *path,
|
|
obs_missing_file_cb callback,
|
|
int src_type, void *src,
|
|
void *data);
|
|
|
|
EXPORT void obs_missing_files_add_file(obs_missing_files_t *files,
|
|
obs_missing_file_t *file);
|
|
EXPORT size_t obs_missing_files_count(obs_missing_files_t *files);
|
|
EXPORT obs_missing_file_t *
|
|
obs_missing_files_get_file(obs_missing_files_t *files, int idx);
|
|
EXPORT void obs_missing_files_destroy(obs_missing_files_t *files);
|
|
EXPORT void obs_missing_files_append(obs_missing_files_t *dst,
|
|
obs_missing_files_t *src);
|
|
|
|
EXPORT void obs_missing_file_issue_callback(obs_missing_file_t *file,
|
|
const char *new_path);
|
|
EXPORT const char *obs_missing_file_get_path(obs_missing_file_t *file);
|
|
EXPORT const char *obs_missing_file_get_source_name(obs_missing_file_t *file);
|
|
EXPORT void obs_missing_file_release(obs_missing_file_t *file);
|
|
EXPORT void obs_missing_file_destroy(obs_missing_file_t *file);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|