1
0
mirror of https://github.com/falk-werner/webfused synced 2024-09-28 22:10:47 +00:00
falk-werner_webfused/src/webfused/auth/file_authenticator.h

27 lines
378 B
C
Raw Normal View History

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