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/authentication/auth_settings_builder.h

29 lines
521 B

#ifndef WFD_AUTH_SETTINGS_BUILDER_H
#define WFD_AUTH_SETTINGS_BUILDER_H
#ifdef __cplusplus
#endif
extern struct wfd_auth_settings *
wfd_auth_settings_create(void);
extern void
wfd_auth_settings_dispose(
struct wfd_auth_settings * settings);
extern void
wfd_auth_settings_set_provider(
struct wfd_auth_settings * settings,
char const * provider);
extern void
wfd_auth_settings_add(
struct wfd_auth_settings * settings,
char const * key,
char const * value);
#ifdef __cplusplus
#endif
#endif