/
githubmirror
/
obs-studio
Обзор
Документация
Войти
/
githubmirror
/
obs-studio
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
shared/opts-parser/opts-parser.h
27 строк
413 B
tytan652
deps,shared,plugins: Move opts-parser to shared folder
27 июл 2024, 08:38
27 июл 2024, 08:38
2a53015
Код
Авторство
О чём код?
#pragma once #include <stddef.h> #ifdef __cplusplus extern "C" { #endif struct obs_option { char *name; char *value; }; struct obs_options { size_t count; struct obs_option *options; size_t ignored_word_count; char **ignored_words; char **input_words; }; struct obs_options obs_parse_options(const char *options_string); void obs_free_options(struct obs_options options); #ifdef __cplusplus } #endif