mirror of
https://github.com/falk-werner/webfused
synced 2024-10-27 20:44:08 +00:00
26 lines
374 B
C
26 lines
374 B
C
#ifndef WFD_AUTH_PAM_AUTHENTICATOR_H
|
|
#define WFD_AUTH_PAM_AUTHENTICATOR_H
|
|
|
|
#ifndef __cplusplus
|
|
#include <stdbool.h>
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
struct wfd_authenticator;
|
|
struct wfd_settings;
|
|
|
|
extern bool
|
|
wfd_pam_authenticator_create(
|
|
struct wfd_settings * settings,
|
|
struct wfd_authenticator * authenticator);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|