mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
21 lines
340 B
C
21 lines
340 B
C
|
#ifndef WSFSP_OPERATION_READDIR_INTERN_H
|
||
|
#define WSFSP_OPERATION_READDIR_INTERN_H
|
||
|
|
||
|
#include "wsfsp/operation/readdir.h"
|
||
|
#include "wsfsp/provider_intern.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
extern void wsfsp_readdir(
|
||
|
struct wsfsp_invokation_context * context,
|
||
|
json_t * params,
|
||
|
int id);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|