You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
falk-werner_webfused/src/webfused/config/auth_settings.h

26 lines
415 B

#ifndef WFD_CONFIG_AUTH_SETTINGS_H
#define WFD_CONFIG_AUTH_SETTINGS_H
#ifdef __cplusplus
extern "C"
{
#endif
struct wfd_auth_settings;
struct config_setting_t;
extern struct wfd_auth_settings *
wfd_auth_settings_create(
char const * provider_name,
struct config_setting_t * settings);
extern void
wfd_auth_settings_dispose(
struct wfd_auth_settings * settings);
#ifdef __cplusplus
}
#endif
#endif