mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
16 lines
258 B
C
16 lines
258 B
C
|
#ifndef WSFS_ADAPTER_AUTHENTICATE_H
|
||
|
#define WSFS_ADAPTER_AUTHENTICATE_H
|
||
|
|
||
|
#ifndef __cplusplus
|
||
|
#include <stdbool.h>
|
||
|
#endif
|
||
|
|
||
|
struct wsfs_credentials;
|
||
|
|
||
|
typedef bool wsfs_authenticate_fn(
|
||
|
struct wsfs_credentials * credentials,
|
||
|
void * user_data);
|
||
|
|
||
|
|
||
|
#endif
|