mirror of
https://github.com/falk-werner/webfuse
synced 2025-06-13 12:54:15 +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
|