1
0
mirror of https://github.com/falk-werner/webfused synced 2024-09-30 01:40:46 +00:00
falk-werner_webfused/src/webfused/auth/factory.h

26 lines
380 B
C
Raw Normal View History

2020-03-16 20:50:31 +00:00
#ifndef WFD_AUTHENTICATION_FACTORY_H
#define WFD_AUTHENTICATION_FACTORY_H
#ifndef __cplusplus
#include <stdbool.h>
#endif
#ifdef __cplusplus
extern "C"
{
#endif
struct wfd_authenticator;
struct wfd_auth_settings;
extern bool
wfd_authenticator_create(
struct wfd_auth_settings * settings,
struct wfd_authenticator * authenticator);
#ifdef __cplusplus
}
#endif
#endif